<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>页面中鼠标移上图片放大效果</title>
<style>
.pic {width: 500px;margin: 150px auto;}
.pic img {
border-radius: 5px;
transition: all 0.5s;
}
.pic:hover img{transform: scale(1.5);}
</style>
</head>
<body>
<div class="pic">
<img src="static/images/icon2.png" alt="">
</div>
</body>
</html>