方法一:
.container{
background-size: 100% 100%;
transition: all 2s;
}
.container:hover{
background-size: 120% 120%;
方法二:
img{
img:hover{
transform:scale(1.2); //图片放大的倍数
css实现鼠标悬停在图片上图片缓慢缩放效果
原文:https://www.cnblogs.com/Zg-blog/p/9385280.html