缩放

作者: 若榴花开 | 来源:发表于2018-02-08 17:49 被阅读0次
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>缩放</title>
    <style type="text/css">
        .box{
            width: 100px;
            height: 100px;
            background-color: red;
            margin: 50px auto;
            transition: 2s;
        }
        body:hover .box{
            /*transform: scaleX(0.5);*/
            /*transform: scaleY(0.5);*/
            transform: scale(0.5);
        }
            
    </style>
</head>
<body>  
    <div class="box">12345</div>       
</body>
</html>

相关文章

网友评论

      本文标题:缩放

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