实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style> 
5
div
6
{
7
width:100px;
8
height:100px;
9
background:red;
10
position:relative;
11
animation:mymove 3s;
12
animation-iteration-count:3;
13
14
/* Safari and Chrome */
15
-webkit-animation:mymove 3s;
16
-webkit-animation-iteration-count:3;
17
}
18
19
@keyframes mymove
20
{
21
from {top:0px;}
22
to {top:200px;}
23
}
24
25
@-webkit-keyframes mymove /* Safari and Chrome */
26
{
27
from {top:0px;}
28
to {top:200px;}
29
}
30
</style>
31
</head>
32
<body>
33
34
<p><strong>注意:</strong> Internet Explorer 9 及更早 IE 版本浏览器不支持 animation-iteration-count 属性。</p>
35
36
<div></div>
37
38
</body>
39
</html>
40