我创建的代码有效,但如果你快速点击de按钮,滑块就会挂钩。
Jquery
$(document).ready(function(){
$(".list div").each(function(e) {
if (e != 0)
$(this).hide();
});
$("#next").click(function(){
if ($(".list div:visible").next().length != 0){
$(".list div:visible").stop().next().stop().fadeIn().prev().stop().fadeOut();
} else {
$(".list div:visible").fadeOut();
$(".list div:first").fadeIn();
}
return false;
});
$("#prev").click(function(){
if ($(".list div:visible").prev().length != 0){
$(".list div:visible").prev().stop().fadeIn().next().stop().fadeOut();
} else {
$(".list div:visible").fadeOut();
$(".list div:last").fadeIn();
}
return false;
});
});
这段代码有什么问题?
希望有人可以帮助我。Greets Yoeri
答案 0 :(得分:0)
检查您的元素当前是否已设置动画:
$("#next").click(function(){
if ($(".list div:visible").next().length != 0 && !$(".list div:visible").is(':animated')){ // notice the second condition
$(".list div:visible").stop().next().stop().fadeIn().prev().stop().fadeOut();
} else {
$(".list div:visible").fadeOut();
$(".list div:first").fadeIn();
}
return false;
});
对$("#prev").click();