动画上的Jquery回调函数

时间:2017-07-09 08:19:36

标签: jquery-animate

我想出了如何为这种类型的jquery animate方法做一个回调函数

$("#div1").animate({top: "-=100"}, 2000, function(){alert("hi")});

但我似乎无法弄清楚如何使用这个animate()函数创建一个简单的警报回调函数。

$('#div1').animate({top: "-800"}, {duration: 3000}).animate({left: "-700"}, 
{duration: 3000, queue: false});

1 个答案:

答案 0 :(得分:0)

试试这个

$('#div1')
.animate({top: "-800"}, {duration: 3000})
.animate({left: "-700"}, {duration: 3000, queue: false, complete: function() {console.log('done');}});

在这种情况下,回调函数必须是options对象的一部分,如complete:function(){// code here}