实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<meta charset="utf-8"> 
5
<title>手册网(www.shouce.ren)</title> 
6
<style> 
7
#myDIV {
8
    width: 300px;
9
    height: 200px;
10
    background: red url('/themes/zhan/styles/images/compatible_firefox.gif') no-repeat top left/5px 5px;
11
    -webkit-animation: mymove 5s infinite; /* Chrome, Safari, Opera */
12
    animation: mymove 5s infinite;
13
}
14
15
/* Chrome, Safari, Opera */
16
@-webkit-keyframes mymove {
17
    50% {background: blue bottom right/50px 50px;}
18
}
19
20
/* Standard syntax */
21
@keyframes mymove {
22
    50% {background: blue bottom right/50px 50px;}
23
}
24
</style>
25
</head>
26
<body>
27
28
<p>逐步改变背景属性:<p>
29
<div id="myDIV"></div>
30
31
<p>background 属性是所有背景属性的简写属性。</p>
32
<p>CSS 中仅有 background-color, background-position, 和 background-size 属性支持动画效果。</p>
33
<p><b>注意:</b>Internet Explorer 9 及更早 IE 版本不支持 CSS 动画。</p>
34
35
</body>
36
</html>