css实现鼠标悬浮图片放大

话不多说,直接上代码

          img {
             100%;
            height: auto;
            transform: scale(1);
            transition: transform 1s ease 0s;
          }

          img:hover {
            transform: scale(1.05);
          }       

  

原文地址:https://www.cnblogs.com/ZhaoWeiNotes/p/13864176.html