svg 蒙版
- 蒙版用mask声明 蒙版不影响事件响应 蒙版白色为不透明,越黑越不透明 blank属性无效
<body>
<div style="width: 200px; height: 200px;margin: 0 auto;">
<svg width="200" height="200" viewBox="0 0 200 200">
<rect x="0" y="0" width="100" height="100" mask="url(#msk)" fill="#8da5c7" stroke="red"
stroke-width="1" onclick="javascript:alert(123)"></rect>
<mask id="msk">
<circle cx="30" cy="30" r="30" fill="#666"></circle>
<rect x=0 y=0 width="30" height="30" fill="#a000a0">
</circle>
</mask>
</svg>
</div>
</body>