实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
5
<style> 
6
div
7
{
8
width:100px;
9
height:100px;
10
background:red;
11
position:relative;
12
animation:mymove 5s infinite;
13
14
/* Safari、Chrome 和 Opera */
15
-webkit-animation:mymove 5s infinite;
16
}
17
18
@keyframes mymove
19
{
20
from {left:0px;}
21
to {left:200px;}
22
}