SVGMaskElement:width 属性

SVGMaskElement 接口的只读 width 属性返回一个 SVGAnimatedLength 对象,该对象包含 <marker>width 属性的值。

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

一个 SVGAnimatedLength 对象。该对象的 baseVal 属性返回一个 SVGLength,其值返回 width 值。

示例

html
<div>
  <svg viewBox="-10 -10 120 120" width="100" height="100">
    <mask id="mask" x="0" maskUnits="objectBoundingBox">
      <!-- Everything under a white pixel will be visible -->
      <rect x="0" y="0" width="100" height="100" fill="white" />

      <!-- Everything under a black pixel will be invisible -->
      <path
        d="M10,35 A20,20,0,0,1,50,35 A20,20,0,0,1,90,35 Q90,65,50,95 Q10,65,10,35 Z"
        fill="black" />
      <animate
        attributeName="width"
        values="144;0;144"
        dur="5s"
        repeatCount="indefinite" />
    </mask>

    <polygon points="-10,110 110,110 110,-10" fill="orange" />

    <!-- with this mask applied, we "punch" a heart shape hole into the circle -->
    <circle cx="50" cy="50" r="50" mask="url(#mask)" />
  </svg>
</div>
<pre id="log"></pre>
js
const mask = document.getElementById("mask");

function displayLog() {
  const animValue = mask.width.animVal.value;
  const baseValue = mask.width.baseVal.value;
  log.textContent = `The 'width.animVal' is ${animValue}.\n`;
  log.textContent += `The 'width.baseVal' is ${baseValue}.`;
  requestAnimationFrame(displayLog);
}
displayLog();

规范

规范
CSS 遮罩模块级别 1
# dom-svgmaskelement-width

浏览器兼容性

BCD 表格仅在浏览器中加载