SVGLinearGradientElement: x2 プロパティ
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月.
x2 は SVGLinearGradientElement インターフェイスの読み取り専用プロパティで、グラデーションの始点の X 軸座標を SVGAnimatedLength として記述します。これは、<linearGradient> 要素の x2 属性の計算値を反映します。
この属性の値は <length>、<percentage>、<number> のいずれかです。SVGAnimatedLength.baseVal の値は、ユーザー座標系におけるグラデーションの終点の x 座標です。
値
例
次の SVG があったとします。
html
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="gradient1" x1="50%" y1="0%" x2="50%" y2="100%">
<stop offset="0%" stop-color="blue" />
<stop offset="100%" stop-color="white" />
</linearGradient>
<linearGradient id="gradient2" x1="25%" y1="0%" x2="75%" y2="100%">
<stop offset="0%" stop-color="red" />
<stop offset="100%" stop-color="yellow" />
</linearGradient>
</defs>
<rect x="0" y="0" width="200" height="100" fill="url(#gradient1)" />
<rect x="0" y="100" width="200" height="100" fill="url(#gradient2)" />
</svg>
x2 属性の計算値には、次のようにアクセスできます。
js
const linearGradients = document.querySelectorAll("linearGradient");
const x2Gradient1 = linearGradients[0].x2;
const x2Gradient2 = linearGradients[1].x2;
console.dir(x2Gradient1.baseVal.value); // 出力: 100 (50% of 200)
console.dir(x2Gradient2.baseVal.value); // 出力: 150 (75% of 200)
仕様書
| Specification |
|---|
| Scalable Vector Graphics (SVG) 2> # __svg__SVGLinearGradientElement__x2> |