这是我的代码。如何在每次完成动画时重复动画?
$('img.balloon').animate({
bottom : '100%'
}, 4000, 'linear', function() {
// on complete repeat but how?
});
答案 0 :(得分:3)
(function doAnim(){
$('img.balloon').css('bottom', '-20px').animate({
bottom : '100%'
}, 4000, 'linear',
doAnim);
})();