SVGMaskElement: x プロパティ
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since 2015年7月.
x は SVGMaskElement インターフェイスの読み取り専用プロパティで、 <mask> の x 属性の値を含む SVGAnimatedLength オブジェクトを返します。これは、マスク領域の左上隅の X 軸座標を表します。
値
SVGMaskElement.maskUnits で定義された座標系における SVGAnimatedLength オブジェクトです。このオブジェクトの baseVal プロパティは、 SVGLength で x の値を返します。
例
html
<div> <svg viewBox="-10 -10 120 120" width="100" height="100"> <mask id="mask" x="0" maskUnits="userSpaceOnUse"> <!-- 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="x" values="0;80;0" 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.x.animVal.value; const baseValue = mask.x.baseVal.value; log.textContent = `The 'x.animVal' is ${animValue}.\n`; log.textContent += `The 'x.baseVal' is ${baseValue}.`; requestAnimationFrame(displayLog); } displayLog(); 仕様書
| Specification |
|---|
| CSS Masking Module Level 1> # dom-svgmaskelement-x> |