CSS3 Transition

昔憶落落發表於2019-03-11

<!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>複製程式碼


相關文章