运行结果尺寸: 300 x 150
x
 
<!DOCTYPE html>
<html>
<head>
<style> 
div {
  width: 100px;
  height: 100px;
  background: red;
  transition-property: width;
  transition-duration: 2s;
}
div:hover {
  width: 300px;
}
</style>
</head>
<body>
<h1>transition-property 属性</h1>
<p>将鼠标悬停在下面的 div 元素上,可以看到过渡效果:</p>
<div></div>
<p><b>注意:</b>此示例不适用于 Internet Explorer 9 和更早版本。</p>
</body>
</html>
×

报个问题: