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