实例代码“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 5s infinite;
12
-webkit-animation:mymove 5s infinite; /* Safari and Chrome */
13
}
14
15
@keyframes mymove
16
{
17
0%   {top:0px;}
18
25%  {top:200px;}
19
75%  {top:50px}
20
100% {top:100px;}
21
}
22
23
@-webkit-keyframes mymove /* Safari and Chrome */
24
{
25
0%   {top:0px;}
26
25%  {top:200px;}
27
75%  {top:50px}
28
100% {top:100px;}
29
}
30
</style>
31
</head>
32
<body>
33
34
<p><strong>Note:</strong> The @keyframes rule is not supported in Internet Explorer 9 and earlier versions.</p>
35
36
<div></div>
37
38
</body>
39
</html>
40