实例代码“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
    height: 100px;
9
    background-color: coral;
10
    color: white;
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% {height: 500px;}
18
}
19
20
/* Standard syntax */
21
@keyframes mymove {
22
    50% {height: 500px;}
23
}
24
</style>
25
</head>
26
<body>
27
28
<p>height 属性支持动画效果。</p>
29
<p><b>注意:</b>Internet Explorer 9 及更早 IE 版本不支持 CSS 动画。</p>
30
31
<p>逐步改变 DIV 元素的高度,从 100px 到 500px:<p>
32
<div id="myDIV">
33
  <h1>My DIV</h1>
34
</div>
35
36
</body>
37
</html>