xxxxxxxxxx
<html>
<head>
<meta charset="utf-8">
<title>W3Cschool教程(w3cschool.cn)</title>
<style>
div
{
width:100px;
height:100px;
background:red;
transition-property:width;
transition-duration:5s;
/* Safari */
transition-property:width;
transition-duration:5s;
}
div:hover
{
width:300px;
}
</style>
</head>
<body>
<p><b>注意:</b> 该属性不兼容IE9 以及更早版本的浏览器</p>
<div></div>
<p>将鼠标移动到块上查看动画效果.</p>
</body>
</html>