SVGForeignObjectElement: x 属性
SVGForeignObjectElement
接口的只读属性 x
描述了 <foreignObject>
元素的 x 轴坐标。它反映了 <foreignObject>
元素上
属性的计算值。x
该属性值可以是 <length>
、<percentage>
或 <number>
。
的数值是 SVGAnimatedLength.baseVal
<foreignObject>
元素在用户坐标系中的 x 坐标。
值
一个 SVGAnimatedLength
对象。
示例
给定以下 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>This is a foreign object.</p>
</div>
</foreignObject>
<foreignObject id="object2" x="25%" y="50%" width="10%" height="10%">
<div xmlns="http://www.w3.org/1999/xhtml">
<p>This is another foreign object.</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>
我们可以访问 x
属性的计算值
js
const foreignObjects = document.querySelectorAll("foreignObject");
const xObject1 = foreignObjects[0].x;
const xObject2 = foreignObjects[1].x;
console.dir(xObject1.baseVal.value); // output: 50
console.dir(xObject2.baseVal.value); // output: 50 (25% of 200)
规范
规范 |
---|
Scalable Vector Graphics (SVG) 2 # __svg__SVGForeignObjectElement__x |
浏览器兼容性
加载中…