欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

css3 transition

程序员文章站 2022-05-11 12:07:24
...

<!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>复制代码


转载于:https://juejin.im/post/5c862fa3f265da2da15df448