<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=\, initial-scale=1.0">
<title>Document</title>
<style>
.productBox li{position: relative; width: 300px; height: 300px;}
.productBox li .mask{width: 100%; height: 100%; background: rgba(255,0,0,.9);
position: absolute; left: 0; top: 0; opacity: 0; visibility: hidden; transform: scale(0); transition: all .6s;}
.productBox li .pic:hover .mask{opacity:2; visibility: visible; transform: scale(1);}
.name{color: #fff; font-size: 15px; margin-top: 14px; max-height: 189px; overflow: hidden;}
</style>
</head>
<body>
<div class="productBox">
<ul class="clearfix">
<li class="wow fadeInUp">
<div class="item">
<div class="pic">
<a href="">
<img src="./imgs/dg10.jpg" alt="" style="width: 300px; height: 300px;">
<div class="mask">
<div class="line"></div>
<div class="name">
"hfsdfghs"
</div>
</div>
</a>
</div>
</div>
</li>
</ul>
</div>
</body>
</html>