鼠标悬停图片放大效果:
img{
transition: all .6s; //过渡属性完成时间
}
img:hover{
transform: scale(1.2); //放大倍数
}
鼠标悬停文字或者图片向左、向右移动:
a:hover{
padding-left: 10px;
或者:
margin-left
:10
px
}
a{
transition: all 0.4s linear;
}
鼠标悬停图片放大效果:
img{
}
img:hover{
}
鼠标悬停文字或者图片向左、向右移动:
margin-left
:10
px