gpt4 book ai didi

jquery - 在 ie7 中重复动画

转载 作者:行者123 更新时间:2023-12-01 01:48:50 26 4
gpt4 key购买 nike

如何在 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();
});

最佳答案

我在 IE 8 中尝试过,它对我有用 http://jsfiddle.net/8EtKy/2/

看一下。

HTML

<div id="rain"></div>

jQuery

$(document).ready(function() {
var $grower = $('#rain');
function runIt() {
$grower.animate({left:'48%',top:'800px',opacity:'0'}, 1000, function() {
$grower.removeAttr("style");

});
}
setInterval(runIt,100);
});

CSS

#rain{
width:50px;
height:50px;
background-color:#000;
}

关于jquery - 在 ie7 中重复动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15359545/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com