鼠标移入放大效果

<div class="box">
	<img src="http://www.jq22.com/img/cs/500x500-9.png">
</div>

css

.box{
	width: 200px;
	height:200px;
	overflow: hidden;
}
img{
	width: 100%;
	transition: transform 1.6s;
}
img:hover{
	transform: scale(2.0);
}
发布了167 篇原创文章 · 获赞 52 · 访问量 6912

猜你喜欢

转载自blog.csdn.net/qq_42363032/article/details/103933414