我正在尝试使用CSS3 transitions为动态创建的 html 元素设置动画。
我希望动画在元素创建之前开始。
为此,我创建了一个设置元素原始位置的类,然后通过 jquery css()方法设置目标位置
但是新元素只是出现在目标位置,没有任何过渡。
如果我使用 0ms 的 setTimeout 来设置新的 css 值,它就可以工作。
有什么我做错了吗?还是限制?我认为我不需要使用 setTimeout 解决方法。
谢谢!
更新:这是 jsfiddle.net 上运行的代码的链接,供您进行实验。 http://jsfiddle.net/blackjid/s9zSH/
更新我已经用答案中的解决方案更新了示例。
http://jsfiddle.net/s9zSH/52/
这是一个完整的示例代码
<html>
<head>
<script src="http://code.jquery.com/jquery-1.4.3.min.js"></script>
<script type="text/javascript">
//Bind click event to the button to duplicate the element
$(".duplicate").live("click", function (e){
var $to = $("#original .square").clone()
$("body").append($to);
if($(e.target).hasClass("timeout"))
//With setTimeout it work
setTimeout(function() {
$to.css("left", 200 + "px");
},0);
else if($(e.target).hasClass("notimeout"))
// These way it doesn't work
$to.css("left", 200 + "px");
});
</script>
<style type="text/css">
.animate{
-webkit-transition: all 1s ease-in;
}
.square{
width:50px;
height:50px;
background:red;
position:relative;
left:5px;
}
</style>
</head>
<body>
<div id="original">
<div class="square animate"></div>
</div>
<button class="duplicate timeout">duplicate with setTimeout</button>
<button class="duplicate notimeout">duplicate without setTimeout</button>
</body>
</html>