Result Size: 625 x 534
x
 
<!DOCTYPE html>
<html>
<head>
<style> 
div {
  width: 100px;
  height: 100px;
  background: red;
  transition-property: width;
  transition-duration: 2s;
  transition-timing-function: linear;
  transition-delay: 1s;
}
div:hover {
  width: 300px;
}
</style>
</head>
<body>
<h1>一一指定的过渡属性</h1>
<p>将鼠标悬停在下方的div元素上,可以看到过渡效果:</p>
<div></div>
<p><b>注意:</b> 过渡效果在开始前有 1 秒的延迟。</p>
<p><b>注意:</b>此示例不适用于 Internet Explorer 9 和更早版本。</p>
</body>
</html>