0
我已經成功創建了使用jQuery的滑動橫幅,但是當我嘗試使用.mouseover(function(){ clearInterval() }
這意味着在圖片中移動鼠標時,滑動橫幅將停止滑動,這不起作用。jQuery滑動橫幅mouseover&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);
});
(「#wrapper-banner」)缺少$,但是您的代碼中有這個確定嗎? –
謝謝你的男人!這是我從昨天開始的另一個低級錯誤! –