实例代码“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; left:0px; background:red;}
18
25%  {top:0px; left:100px; background:blue;}
19
50%  {top:100px; left:100px; background:yellow;}
20
75%  {top:100px; left:0px; background:green;}
21
100% {top:0px; left:0px; background:red;}
22
}