x
 
<!DOCTYPE html>
<html>
<head>
<style>
.mask1 {
  -webkit-mask-image: url(/i/pic/w3.png);
  mask-image: url(/i/pic/w3.png);
  mask-repeat: no-repeat;    
}
</style>
</head>
<body>
<h1>mask-image 属性</h1>
<h3>带有遮罩层图像的图片:</h3>
<div class="mask1">
<img src="/i/photo/wuhan.jpg" alt="武汉" style="width:600px;height:400px;" />
</div>
<h3>原始图片:</h3>
<img src="/i/photo/wuhan.jpg" alt="武汉" style="width:600px;height:400px;" />
</body>
</html>