0

当我添加时,我无法让我的动画完整功能触发

{持续时间:2000,队列:假}

例子:

current.animate({left: "-=600px"}, {duration : 2500, queue : false});
next.animate({left: "-=600px"}, {duration : 2500, queue : false}, function(){
  // Run stuff here once both animations above have finished  
});

我试过 .done() 没有成功,

任何想法将不胜感激!

谢谢

4

1 回答 1

1

您可以通过以下方式实现此行为:

elem.animate({left: "-=600px"}, {duration : 2500, queue : false, complete: function () {
   //some actions
}});

这是一个例子:http: //jsfiddle.net/byQZp/1/

于 2013-01-11T13:23:31.560 回答