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