maskUnits
示例
html
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<mask
id="myMask1"
maskUnits="userSpaceOnUse"
x="20%"
y="20%"
width="60%"
height="60%">
<rect fill="black" x="0" y="0" width="100%" height="100%" />
<circle fill="white" cx="50" cy="50" r="35" />
</mask>
<mask
id="myMask2"
maskUnits="objectBoundingBox"
x="20%"
y="20%"
width="60%"
height="60%">
<rect fill="black" x="0" y="0" width="100%" height="100%" />
<circle fill="white" cx="50" cy="50" r="35" />
</mask>
<!-- Some reference rect to materialized the mask -->
<rect id="r1" x="0" y="0" width="45" height="45" />
<rect id="r2" x="0" y="55" width="45" height="45" />
<rect id="r3" x="55" y="55" width="45" height="45" />
<rect id="r4" x="55" y="0" width="45" height="45" />
<!-- The first 3 rect are masked with useSpaceOnUse units -->
<use mask="url(#myMask1)" href="#r1" fill="red" />
<use mask="url(#myMask1)" href="#r2" fill="red" />
<use mask="url(#myMask1)" href="#r3" fill="red" />
<!-- The last rect is masked with objectBoundingBox units -->
<use mask="url(#myMask2)" href="#r4" fill="red" />
</svg>
mask
对于 <mask>
,maskUnits
定义了用于该元素几何属性(x
、y
、width
和 height
)的坐标系。
值 | userSpaceOnUse | objectBoundingBox |
---|---|
默认值 | objectBoundingBox |
可动画 | 是 |
userSpaceOnUse
-
此值表示几何属性的所有坐标都引用用户坐标系,该坐标系在创建蒙版时定义。
objectBoundingBox
-
此值表示几何属性的所有坐标都表示应用蒙版的元素的边界框的分数或百分比。边界框可以认为与
<mask>
内容绑定到 "0 0 1 1
"viewBox
相同。
规范
规范 |
---|
CSS 蒙版模块级别 1 # element-attrdef-mask-maskunits |
浏览器兼容性
BCD 表格仅在启用 JavaScript 的浏览器中加载。