SVGLineElement: x2 属性
SVGLineElement
接口中只读的 x2
属性描述了线条结束点的 x 轴坐标值,其类型为 SVGAnimatedLength
。它反映了 <line>
元素的 x2
几何属性。
该属性值可以是 <length>
、<percentage>
或 <number>
。SVGAnimatedLength.baseVal
的数值是以用户坐标系单位表示的该终点在 x 轴上的位置。
值
一个 SVGAnimatedLength
对象。
示例
给定以下 SVG
html
<svg viewBox="0 0 300 200" xmlns="http://www.w3.org/2000/svg">
<line x1="20" y1="30" x2="40" y2="50" stroke="blue" stroke-width="2" />
<line x1="15%" y1="0" x2="30%" y2="60" stroke="red" stroke-width="4" />
</svg>
我们可以访问 x2
属性的计算值
js
const lines = document.querySelectorAll("line");
const x2Pos0 = lines[0].x2;
const x2Pos1 = lines[1].x2;
console.dir(x2Pos0.baseVal.value); // output: 40 (the value of `x2`)
console.dir(x2Pos1.baseVal.value); // output: 90 (30% of 300)
规范
规范 |
---|
Scalable Vector Graphics (SVG) 2 # __svg__SVGLineElement__x2 |
浏览器兼容性
加载中…