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