美文网首页
前端(动画)

前端(动画)

作者: ARanEs | 来源:发表于2018-08-15 10:00 被阅读0次
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>动画</title>
        <style type="text/css">
            .box{
                width: 200px;
                height: 200px;
                background-color: red;
                transition: all 1000ms ease;
            }
            .box:hover{
                width: 200px;
                height: 200px;
                background-color: yellow;
                border-radius: 100px;
    
            }
            
        </style>
    </head>
    <body>
        <div class="box"></div> 
    </body>
    </html>
    

    鼠标移动前 效果:


    image.png

    鼠标移动后 效果:


    image.png

    相关文章

      网友评论

          本文标题:前端(动画)

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