<!doctype html> <html> <head> <meta charset="utf-8"> <title>css3鼠标悬浮放大效果</title> <style> .imgBox { width: 365px; height: 223px; overflow: hidden; } .imgBox img { width: 100%; height: 100%; transition: all .4s; -moz-transition: all .4s; -webkit-transition: all .4s; -o-transition: all .4s; } .imgBox img:hover { transform: scale(1.2); } </style> </head> <body> <div class="imgBox"> <img src="https://profile.csdnimg.cn/5/6/2/3_qq_38881495" alt="" /> </div> </body> </html>