我有一个 200 x 200 的图像。我希望我的图像有 2 种效果: 1. 图像缓慢浮动到<div>
(320x240px) 的中心 2. 之后,它会自动调整大小 50%(即 100x100px)和浮动到左下角<div>
这是我的代码:
#ad-1 #alunaimg{
width: 200px;
height: 200px;
margin: 20px 60px;
position: absolute;
-webkit-animation: imgmove 3s linear 0s 1;
-webkit-animation: imgresize 2s linear 0s 1;
}
@-webkit-keyframes imgmove{
0% {left: -200px; top: 0px;}
100% {left: 0px; top: 0px;}
}
@-webkit-keyframes imgresize{
0% {left: 0px; top: 0px;}
100% {width: 50%; height: 50%; top: 130px; left: 40px;}
}
第一个效果完美,但第二个效果不起作用。
这是我的代码http://jsfiddle.net/DreamBig/pgQhJ
如果有人可以提供帮助,我将不胜感激。非常感谢!