-
大小: 7.1MB文件類(lèi)型: .zip金幣: 2下載: 0 次發(fā)布日期: 2023-09-23
- 語(yǔ)言: Html/CSS
- 標(biāo)簽: 當(dāng)當(dāng)網(wǎng)??html??輪播??
資源簡(jiǎn)介
function changeImg(){
var index=0;
var stop=false;
var $li=$("#content").find("#scroll_img").children("li");//獲得要輪播的圖片的li元素
var $page = $("#content").find("#scroll_number").children("li");//獲得要輪播的索引的li元素
$page.eq(index).addClass("scroll_number_over").stop(true,true).siblings().removeClass("scroll_number_over");//圖片與索引匹配時(shí)實(shí)現(xiàn)圖片的輪播
$page.mouseover(function(){//鼠標(biāo)移入
stop=true;//停止輪播
index=$page.index($(this));
$li.eq(index).stop(true,true).fadeIn().siblings().fadeOut();
$(this).addClass("scroll_number_over").stop(true,true).siblings().removeClass("scroll_number_over");
}).mouseout(function(){
stop=false;
});
setInterval(function(){
if(stop) return;
index++;
if(index>=$li.length){
index=0;
}
$li.eq(index).stop(true,true).fadeIn().siblings().fadeOut();
$page.eq(index).addClass("scroll_number_over").stop(true,true).siblings().removeClass("scroll_number_over");
},3000);
}
function movedome(){
var marginTop=0;
var stop=false;
var interval=setInterval(function(){
if(stop) return;
$("#express").children("li").first().animate({"margin-top":marginTop--},0,function(){
var $first=$(this);
if(!$first.is(":animated")){
if((-marginTop)>$first.height()){
$first.css({"margin-top":0}).appendTo($("#express"));
marginTop=0;
}
}
});
},50);
$("#express").mouseover(function(){
stop=true;
}).mouseout(function(){
stop=false;
});
}

代碼片段和文件信息
?屬性????????????大小?????日期????時(shí)間???名稱(chēng)
-----------?---------??----------?-----??----
?????文件?????7439945??2018-10-08?19:04??當(dāng)當(dāng).rar
-----------?---------??----------?-----??----
?????文件?????7439945??2018-10-08?19:04??當(dāng)當(dāng).rar
評(píng)論
共有 條評(píng)論