我已经使用jQuery成功创建了一个滑动横幅,但是当我尝试使用.mouseover(function(){ clearInterval() }
时,这意味着当在图片中移动鼠标时,滑动横幅将停止滑动,这不起作用。
$("#wrapper-banner > div:gt(0)").hide();
var timer=setInterval(function() {
$('#wrapper-banner > div:first')
.fadeOut(3000)
.next()
.fadeIn(3000)
.end()
.appendTo('#wrapper-banner');
}, 4000);
("#wrapper-banner").mouseover(function(){
clearInterval(timer);
});
答案 0 :(得分:0)