部分代码如下:
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus®">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>Document</title>
<style>
.pro-img img{/*整个页面的hover 放大效果*/
width:80%!important;
height:80%!important;
transition:transform 0.8s linear 0s;
}
.pro-img img:hover{
transform:scale(1.05,1.05)
}
</style>
</head>
<body>
<div class="pro-img">
<img src="m.jpg">
</div>
</body>
</htm