标签:tle block body cto import shadow ima XML imp
今日一言:
我们之所以努力,不是为了改变世界,
而是为了不让世界改变我们。
鼠标移过去图片会自动放大的动画。
<!DOCTYPE html>
<html>
<head>
<title>图片放大</title>
</head>
<style type="text/css">
body{
padding: 0;
margin: 0;
}
.content{
position: absolute;
width: 640px;
height: auto;
left: 50%;
top: 50%;
margin-left: -320px;
margin-top: -25vh;
overflow: hidden;
}
img{
width: 640px;
height: auto;
transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
img:hover{
transform: scale(1.6);
}
</style>
<body>
<div class="content">
<img src="./img/1.jpeg">
</div>
</body>
</html>
标签:tle block body cto import shadow ima XML imp
原文地址:https://www.cnblogs.com/rcklos/p/12989517.html