2
我有一些浮動CSS動畫的泡泡div。有了jQuery,我想停止動畫時懸停,並繼續當用戶不再徘徊。在Firefox中使用Jquery故障暫停CSS動畫
在Chrome中一切都很好用,但Firefox決定暫停之前泡泡。它看起來像是在暫停之前首先重置泡泡動畫。
這裏是JSFiddle
,我用它來暫停唯一的代碼是這樣的:
// Set the hover and hoverOut
jQuery('.bubble').hover(function() {
// Pause the CSS animation
jQuery(this).css('-webkit-animation-play-state', 'paused')
.css('animation-play-state', 'paused');
}, function() {
jQuery(this).delay(1000).queue(function (next) {
// Run the animation again after a delay
jQuery(this).css('-webkit-animation-play-state', 'running')
.css('animation-play-state', 'running')
.css({zIndex: jQuery(this).data('oldZindex')
});
next();
});
});
有誰知道我做錯了什麼或者我俯瞰什麼?
對mozilla使用-moz-animation-play-state –
你說得對,但是它沒有它。暫停按預期工作,只是泡泡在暫停之前移動,然後在暫停時恢復。這是一個奇怪的故障,鉻不顯示。 – Rewdeh
**更新:**我似乎也能夠在Chrome中複製這一點,通過刪除保持泡泡上的動畫的類(x1,x2或x3)。我不知道如何在Firefox中阻止它,但似乎像Firefox在懸停時完全移除動畫。即使我沒有用上面的代碼暫停它,只是改變了泡泡的大小。 – Rewdeh