美文网首页
css (transition) 过渡

css (transition) 过渡

作者: xueyueshuai | 来源:发表于2021-09-10 11:28 被阅读0次
<!DOCTYPE html>
<html>

<head>
    <style>
        div {
            width: 100px;
            height: 100px;
            background: blue;
            transition: width 2s; /*transition: all 2s*/
        }

        div:hover {
            width: 300px;
        }
    </style>
</head>

<body>

    <div></div>

    <p>请把鼠标指针移动到蓝色的 div 元素上,就可以看到过渡效果。</p>

    <p><b>注释:</b>本例在 Internet Explorer 中无效。</p>

</body>

</html>

相关文章

网友评论

      本文标题:css (transition) 过渡

      本文链接:https://www.haomeiwen.com/subject/yvigwltx.html