<!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>
网友评论