如何使用jQuery的animate()函数完成动画重复?

时间:2011-08-22 23:40:55

标签: jquery

这是我的代码。如何在每次完成动画时重复动画?

$('img.balloon').animate({
     bottom : '100%'
}, 4000, 'linear', function() {
     // on complete repeat but how?
});

1 个答案:

答案 0 :(得分:3)

(function doAnim(){
    $('img.balloon').css('bottom', '-20px').animate({
         bottom : '100%'
    }, 4000, 'linear',
    doAnim);
})();