如何在同一元素上销毁创建的动画?
例如: 我有动画
$('#sortable').animate({
paddingTop: 85
}, 100);
在同样的动作中,我想要摧毁它,因为我已经完全需要它了。 类似的东西:
$('#sortable').animate('destroy');
但它不起作用。
答案 0 :(得分:3)
只需使用stop()
$('#sortable').stop(true);// first argument removes all animations in the queue