SVGForeignObjectElement: width プロパティ
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月.
height は SVGForeignObjectElement インターフェイスの読み取り専用プロパティで、この <foreignObject> 要素の高さを記述します。これは、<foreignObject> 要素の height 属性の計算値を反映します。
この属性の値は <length>、<percentage>、<number> のいずれかです。SVGAnimatedLength.baseVal の値は、ユーザー座標系における <foreignObject> 要素の高さです。
値
例
次の SVG があったとします。
html
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
<defs>
<foreignObject id="object1" x="50" y="75" width="100" height="50">
<div xmlns="http://www.w3.org/1999/xhtml">
<p>これは外部オブジェクトです。</p>
</div>
</foreignObject>
<foreignObject id="object2" x="25%" y="50%" width="10%" height="10%">
<div xmlns="http://www.w3.org/1999/xhtml">
<p>これはもう一つの外部オブジェクトです。</p>
</div>
</foreignObject>
</defs>
<rect x="0" y="0" width="200" height="100" fill="lightblue" />
<rect x="0" y="100" width="200" height="100" fill="lightgreen" />
</svg>
うぃdth 属性の計算値には、次のようにアクセスできます。
js
const foreignObjects = document.querySelectorAll("foreignObject");
const heightObject1 = foreignObjects[0].height;
const heightObject2 = foreignObjects[1].height;
console.dir(heightObject1.baseVal.value); // 出力: 50
console.dir(heightObject2.baseVal.value); // 出力: 20 (10% of 200)
仕様書
| Specification |
|---|
| Scalable Vector Graphics (SVG) 2> # __svg__SVGForeignObjectElement__height> |