实例代码“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
11
transition-property:width,height;
12
transition-duration:2s;
13
14
/* Safari */
15
-webkit-transition-property:width,height;
16
-webkit-transition-duration:2s;
17
}
18
19
div:hover
20
{
21
width:300px;
22
height:300px;
23
}
24
</style>
25
</head>
26
<body>
27
28
<p><b>Note:</b> This example does not work in Internet Explorer 9 and earlier versions.</p>
29
30
<div></div>
31
32
<p>Hover over the div element above, to see the transition effect.</p>
33
34
</body>
35
</html>
36