案例:CSS3 案例     状态:可编辑再运行    进入横版
x
<p><strong>注释:</strong>Internet Explorer 9 以及更早的版本不支持 animation-iteration-count 属性。</p>
 
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

 运行结果 
 北美留学生论坛