<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.mask{
margin-left: auto;
margin-right: auto;
width: 400px;
height: 400px;
mask: url("./images/2.png") center center/400px 400px no-repeat ;
-webkit-mask:url("./images/2.png") center center/400px 400px no-repeat ;
}
img{
width: 400px;
height: 400px;
}
</style>
</head>
<body>
<div class="mask">
<img src="./images/1.jpg" alt="">
</div>
</body>
</html>