代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.box{
width: 400px;
height: 200px;
margin: 50px auto;
position: absolute;
}
img{
position: relative;
transform: 1s;
}
img:hover{
transform:scale(1.1,1)
}
</style>
</head>
<body>
<div class="box">
<img src="./QQ截图20230313134238.png" alt="">
</div>
</body>
</html>
原图:
