实例代码“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-name:mymove;
12
animation-duration:5s;
13
14
/* Safari and Chrome */
15
-webkit-animation-name:mymove;
16
-webkit-animation-duration:5s;
17
}
18
19
@keyframes mymove
20
{
21
from {left:0px;}
22
to {left:200px;}