SVGMaskElement: maskUnits 屬性

Baseline 已廣泛支援

此特性已相當成熟,可在許多裝置和瀏覽器版本上使用。自 ⁨2015 年 7 月⁩以來,各瀏覽器均已提供此特性。

SVGMaskElement 介面的只讀 **maskUnits** 屬性反映了 <mask> 元素的 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 蒙版模組 Level 1
# dom-svgmaskelement-maskunits

瀏覽器相容性

另見