css实现鼠标悬停在图片上图片缓慢缩放效果

方法一:

.container{

  background-size: 100% 100%;

  transition: all 2s;

}

.container:hover{

  background-size: 120% 120%;

}

方法二:

img{

  transition: all 2s;

}

img:hover{

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

}

猜你喜欢

转载自www.cnblogs.com/Zg-blog/p/9385280.html