图片样式:
img {
width: 150px;
height: 150px;
transition: all .3s ease-in 0s;
}
img:hover {
transform: scale(1.2);
transition: all 0.3s ease-in;
}
扩大1.2倍,在0.3s内完成,移出后缓慢恢复
图片样式:
img {
width: 150px;
height: 150px;
transition: all .3s ease-in 0s;
}
img:hover {
transform: scale(1.2);
transition: all 0.3s ease-in;
}
扩大1.2倍,在0.3s内完成,移出后缓慢恢复