animate's callback function (complete) executed at start?

后端 未结 8 2069
渐次进展
渐次进展 2020-12-15 03:07

I\'m using jQuery 1.5.1 This is my code:

$(\'.cellcontent\').animate({
   left: \'-=190\'}, {
   easing: alert(\'start ani\'),
   duration: 5000,
   complete         


        
8条回答
  •  囚心锁ツ
    2020-12-15 03:57

    $('.cellcontent').animate({
      left: '-=190',
      easing:  'slow',
      duration: 5000,
      function () {
        alert('end ani');
      }
    });
    

提交回复
热议问题