jquery图片轮播设置了淡入淡出效果但是只出现一个效果
functionautoPlay(){IntervalTime=setInterval(function(){index++;if(index>3){index=-1;}...
function autoPlay() {
IntervalTime = setInterval(function () {
index++;
if (index > 3) { index = -1; } else {
$(".GG img").eq(index).fadeIn(2000).siblings("img").fadeOut(2000);
$(".btn li").eq(index).addClass("hover").siblings().removeClass("hover");
}
}, 5000);
} 展开
IntervalTime = setInterval(function () {
index++;
if (index > 3) { index = -1; } else {
$(".GG img").eq(index).fadeIn(2000).siblings("img").fadeOut(2000);
$(".btn li").eq(index).addClass("hover").siblings().removeClass("hover");
}
}, 5000);
} 展开
1个回答
展开全部
fadein盒fadeout 语句不能并列 要这样写
$(..).fadein(300,function($(..).fadeout()))
$(..).fadein(300,function($(..).fadeout()))
追问
我代码在补充问题中 你能帮我改下么
追答
function autoPlay() {
IntervalTime = setInterval(function () {
index++;
if (index > 3) { index = -1; } else {
$(".GG img").eq(index).fadeIn(2000,function(){$(".GG img").fadeOut(2000)})
$(".btn li").eq(index).addClass("hover").siblings().removeClass("hover");
}
}, 5000);
}
你这里的siblings() 我没看懂什么意思
我按我的理解改的一段
现在网上有很多jquery插件能实现这个效果 除非你是在学习
能使用就使用现成的插件
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询