<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.box{
position: relative;
width: 222px;
height: 220px;
margin: 100px auto;
}
.box .one{
position: absolute;
display: none;
left: 0;
top: 0;
width: 222px;
height: 220px;
background: rgba(0, 0, 0, .3) url(images/arr.png) no-repeat center center;
}
a:hover .one{
display: block;
}
</style>
</head>
<body>
<div class="box">
<a href="#">
<img src="images/3.jpg" alt="">
<div class="one"></div>
</a>
</div>
</body>
</html>
