css实现鼠标悬浮图片放大
时间:2020-10-23 17:47:58
收藏:0
阅读:51
话不多说,直接上代码
img { width: 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
评论(0)