x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<style>
6
div {
7
width: 100px;
8
height: 100px;
9
background: red;
10
transition-property: width;
11
transition-duration: 5s;
12
/* Safari */
13
transition-property: width;
14
transition-duration: 5s;
15
}
16
17
div:hover {
18
width: 300px;
19
}
20
</style>
21
</head>
22
<body>
23
24
<p><b>注意:</b> 该属性不兼容IE9 以及更早版本的浏览器</p>
25
26
<div></div>
27
28
<p>将鼠标移动到块上查看动画效果.</p>
29
30
</body>
31
</html>