css3鼠标移动图片上去会变大
css3里面的transform:scale()可以做到按照比例放大,或者缩小的功能
css3的transition是允许css的属性值在一定的时间内平滑的过渡
代码就两行:
img{transition: all 0.6s;}
img:hover{transform: scale(1.1);}
css3里面的transform:scale()可以做到按照比例放大,或者缩小的功能
css3的transition是允许css的属性值在一定的时间内平滑的过渡
代码就两行:
img{transition: all 0.6s;}
img:hover{transform: scale(1.1);}