实例代码“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
animation:myfirst 5s;
11
-moz-animation:myfirst 5s; /* Firefox */
12
-webkit-animation:myfirst 5s; /* Safari and Chrome */
13
-o-animation:myfirst 5s; /* Opera */
14
}
15
16
@keyframes myfirst
17
{
18
0%   {background:red;}
19
25%  {background:yellow;}
20
50%  {background:blue;}
21
100% {background:green;}
22
}