我用下面的代碼:停止和恢復jQuery的動畫
$('#counter').each(function() {
var $this = $(this);
jQuery({
Counter: 0
}).animate({
Counter: $this.text()
}, {
duration:30000,
easing: 'swing',
step: function() {
$this.text(Math.ceil(30 - this.Counter));
},
complete: function() {
$("#count_block").css("display","inline-block");
$this.text(0);
}
});
});
我有我的網頁上Pause
和Resume
按鈕。如何暫停或恢復我開始使用上述代碼的動畫?
嘗試添加小提琴....最小可能的代碼 –
請檢查這個http://jsfiddle.net/hasmukhmistry/sztkso3y/ –
我已經編輯我的答案,pl輕鬆嘗試一下。 –