xzybk

鼠标悬停图片放大效果:

img{

transition: all .6s;  //过渡属性完成时间

}

img:hover{

transform: scale(1.2);  //放大倍数

}

鼠标悬停文字或者图片向左、向右移动:

a:hover{
padding-left: 10px;
或者:margin-left:10px
}
a{
transition: all 0.4s linear;
}

分类:

技术点:

相关文章: