level 2
芝麻馅团子Ω
楼主
var len = $('.dian>li').length;
var index = 0;
var adTimer;
$('.dian li').mouseover(function(){
index = $('.dian li').index(this);
showImg(index);
}).eq().mouseover();
$('.Fbanner').hover(function(){
clearInterval(adTimer);
},function(){
adTimer = setInterval(function(){
index++;
if(index==len)
{
index=0;
}
showImg(index);
},2000)
}).trigger('mouseleave');
function showImg(index){
var adWidth = $('#banner>ul>li:first').width();
$('.pic').stop(true,false).animate({
'left':306*index+'px'
})
$('.dian li').removeClass('button').eq(index).addClass('button');
}
2016年10月25日 03点10分
1
var index = 0;
var adTimer;
$('.dian li').mouseover(function(){
index = $('.dian li').index(this);
showImg(index);
}).eq().mouseover();
$('.Fbanner').hover(function(){
clearInterval(adTimer);
},function(){
adTimer = setInterval(function(){
index++;
if(index==len)
{
index=0;
}
showImg(index);
},2000)
}).trigger('mouseleave');
function showImg(index){
var adWidth = $('#banner>ul>li:first').width();
$('.pic').stop(true,false).animate({
'left':306*index+'px'
})
$('.dian li').removeClass('button').eq(index).addClass('button');
}