<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1>mask-image 属性</h1>
<h3>带有遮罩层(SVG 图像)的图像:</h3>
<svg width="600" height="400">
<mask id="svgmask1">
<circle fill="#ffffff" cx="75" cy="75" r="75"></circle>
<circle fill="#ffffff" cx="80" cy="260" r="75"></circle>
<circle fill="#ffffff" cx="270" cy="160" r="75"></circle>
</mask>
<image xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="img_5terre.jpg" mask="url(#svgmask1)"></image>
</svg>
<h3>原始图像:</h3>
<img src="/i/photo/beijing.jpg" alt="北京" width="600" height="400">
</body>
</html>