SVGMaskElement: maskUnits 属性

maskUnits 属性是 SVGMaskElement 接口的只读属性,它反映了 maskUnits 属性,该属性定义了元素蒙版使用的坐标系。

注意:虽然此属性是只读的,但它只是一个容器,其中包含两个可以修改的值:baseValanimVal

一个 SVGAnimatedEnumeration,它代表坐标系。可能的值在 SVGUnitTypes 接口中定义。

0 (SVG_UNIT_TYPE_UNKNOWN)

类型不是预定义类型之一。

1 (SVG_UNIT_TYPE_USERSPACEONUSE)

对应于 maskUnits 属性的 userSpaceOnUse 值,表示元素内部的所有坐标都引用创建蒙版时定义的用户坐标系。它是默认值。

2 (SVG_UNIT_TYPE_OBJECTBOUNDINGBOX)

对应于属性的 objectBoundingBox 值,表示元素内部的所有坐标都相对于应用蒙版的元素的边界框。这意味着坐标系的原点是对象边界框的左上角,对象边界框的宽度和高度被认为具有 1 个单位长度的值。

示例

html
<div>
  <svg
    viewBox="0 0 100 100"
    height="200"
    width="200"
    xmlns="http://www.w3.org/2000/svg">
    <mask
      id="mask1"
      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="mask2"
      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" />
      <animate
        attributeName="maskUnits"
        values="objectBoundingBox;userSpaceOnUse"
        dur="1s"
        repeatCount="indefinite" />
    </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(#mask1)" href="#r1" fill="blue" />
    <use mask="url(#mask1)" href="#r2" fill="green" />
    <use mask="url(#mask1)" href="#r3" fill="yellow" />

    <!-- The last rect is masked with objectBoundingBox units -->
    <use mask="url(#mask2)" href="#r4" fill="lightblue" />
  </svg>
</div>
<pre id="log"></pre>
js
const unitType = ["unknown", "userSpaceOnUse", "objectBoundingBox"];

const mask = document.getElementById("mask2");
const log = document.getElementById("log");

function displayLog() {
  const baseValue = unitType[mask.maskUnits.baseVal];
  const animValue = unitType[mask.maskUnits.animVal];
  log.textContent = `The top-right 'maskUnits.baseVal' coord system : ${baseValue}\n`;
  log.textContent += `The top-right 'maskUnits.animVal' coord system : ${animValue}`;
  requestAnimationFrame(displayLog);
}
displayLog();

规范

规范
CSS 蒙版模块级别 1
# dom-svgmaskelement-maskunits

浏览器兼容性

BCD 表格仅在浏览器中加载

另请参阅