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