案例:CSS3案例     状态:可编辑再运行    进入竖版
 运行结果 
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:myfirst 5s linear 2s infinite alternate;
12
/* Firefox: */
13
-moz-animation:myfirst 5s linear 2s infinite alternate;
14
/* Safari and Chrome: */
15
-webkit-animation:myfirst 5s linear 2s infinite alternate;
16
/* Opera: */
17
-o-animation:myfirst 5s linear 2s infinite alternate;
18
}
19
20
@keyframes myfirst
21
{
22
0%   {background:red; left:0px; top:0px;}
23
25%  {background:yellow; left:200px; top:0px;}
24
50%  {background:blue; left:200px; top:200px;}
25
75%  {background:green; left:0px; top:200px;}
26
100% {background:red; left:0px; top:0px;}
27
}
28
29
@-moz-keyframes myfirst /* Firefox */
30
{
31
0%   {background:red; left:0px; top:0px;}
32
25%  {background:yellow; left:200px; top:0px;}
33
50%  {background:blue; left:200px; top:200px;}
34
75%  {background:green; left:0px; top:200px;}
35
100% {background:red; left:0px; top:0px;}
36
}
37
38
@-webkit-keyframes myfirst /* Safari and Chrome */
39
{
40
0%   {background:red; left:0px; top:0px;}
41
25%  {background:yellow; left:200px; top:0px;}
42
50%  {background:blue; left:200px; top:200px;}
43
75%  {background:green; left:0px; top:200px;}
44
100% {background:red; left:0px; top:0px;}
45
}
46
47
@-o-keyframes myfirst /* Opera */
48
{