<!DOCTYPE html><html>
<head>
<style>
div {
width: 100px;
height: 100px;
background: blue;
transition: opacity 2s;
opacity: 0.1;
}
div:hover {
/* width: 300px; */
opacity: 1;
}
</style>
</head>
<body>
<div></div>
<p>請把鼠標指針移動到藍色的 div 元素上,就能夠看到過渡效果。</p>
<p><b>註釋:</b>本例在 Internet Explorer 中無效。</p>
</body>
</html>複製代碼