css3简易放大

div.big{
width: 200px;
height: 140px;
margin: 200px auto;
overflow: hidden;
}
img.tutu{
width: 100%;
height: 100%;
transition: transform 2s;

}
img.tutu:hover{
	transform: scale(1.5,1.5);
}

从中心位置开始放大图片

猜你喜欢

转载自blog.csdn.net/qq_44254122/article/details/87727161