-1
我發現這個偉大的垂直幻燈片腳本。 我的問題是,我無法找到一種方法來停止在鼠標上的幻燈片播放。 請你能幫我嗎?先謝謝你 !在鼠標懸停停止jquery動畫
setInterval(
function() {
$('#ticker div').each(function() {
$(this).animate({
'top': '-=10px',
}, 120,
function() {
var top = parseInt($(this).css('top').replace('px', '')) +
parseInt($(this).css('height').replace('px', ''));
if (top < 0) {
//console.log('removing', this)
var clone = $(this).clone();
var parent = $(this).parent();
clone.css('top', '550px');
$(this).remove();
parent.append(clone);
}
})
})
}, 40
)
你能,以幫助你解決問題提供了一個樣本小提琴? – Hackerman