0
當我點擊另一個按鈕時,如何停止發生以下事件?點擊jQuery停止動畫
box_2.animate({'top':'-250px'},500,function(){ overlay.fadeOut('fast');
});
當我點擊另一個按鈕時,如何停止發生以下事件?點擊jQuery停止動畫
box_2.animate({'top':'-250px'},500,function(){ overlay.fadeOut('fast');
});
$('button').click(function() {
box_2.stop(true,true);
})
[.stop()](http://api.jquery.com/stop/)? – Touki