如何在 ie7 和 8 中制作 Jquery 连续循环动画?(ie9/chrome 工作正常)
这是我的代码
$(document).ready(function() {
var $grower = $('#rain');
function runIt() {
$grower.animate({left:'48%',top:'800px',opacity:'0'}, 1000, function() {
$grower.removeAttr("style");
setTimeout(function() {
runIt();
}, 100);
});
}
runIt();
});