实例代码“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:myfirst 5s;
12
-webkit-animation:myfirst 5s; /* Safari and Chrome */
13
}
14
15
@keyframes myfirst
16
{
17
0%   {background:red; left:0px; top:0px;}
18
25%  {background:yellow; left:200px; top:0px;}
19
50%  {background:blue; left:200px; top:200px;}
20
75%  {background:green; left:0px; top:200px;}
21
100% {background:red; left:0px; top:0px;}
22
}