实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<!DOCTYPE html>
5
<html>
6
<head>
7
<meta charset="utf-8"> 
8
<title>手册网(www.shouce.ren)</title> 
9
<style> 
10
#myDIV {
11
    width: 300px;
12
    height: 200px;
13
    background: red url('/themes/zhan/styles/images/compatible_firefox.gif') no-repeat top left/5px 5px;
14
    -webkit-animation: mymove 5s infinite; /* Chrome, Safari, Opera */
15
    animation: mymove 5s infinite;
16
}
17
18
/* Chrome, Safari, Opera */
19
@-webkit-keyframes mymove {
20
    50% {background: blue bottom right/50px 50px;}
21
}
22