缩放

2018-02-08  本文已影响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>
上一篇 下一篇

猜你喜欢

热点阅读