h5 css3 transform

h5 css3 鼠标悬浮 item 放大

.item{
transition: all 0.5s ease;
}

.item:hover {
transform: scale(1.2); // 1 是原始比例
}

你可能感兴趣的:(css3,前端)