鼠标滑过某个图片时,图片慢慢放大

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
div{
width: 300px;
height: 300px;
border: #000 solid 1px;
margin: 50px auto;
overflow: hidden;
}
div img{
cursor: pointer;
transition: all 0.6s;
}
div img:hover{
transform: scale(1.4);
}
</style>
</head>
<body>
<div>
<img src="https://www.duitang.com/blog/?id=537213493" />
</div>
</body>
</html>

猜你喜欢

转载自www.cnblogs.com/mm2015/p/9088092.html