jQuery - 破坏动画

时间:2012-05-31 07:35:40

标签: jquery jquery-animate destroy

如何在同一元素上销毁创建的动画?

例如: 我有动画

$('#sortable').animate({
    paddingTop: 85
}, 100);

在同样的动作中,我想要摧毁它,因为我已经完全需要它了。 类似的东西:

$('#sortable').animate('destroy');

但它不起作用。

1 个答案:

答案 0 :(得分:3)

只需使用stop()

$('#sortable').stop(true);// first argument removes all animations in the queue