SVGLineElement: x2-Eigenschaft
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since January 2020.
Die schreibgeschützte x2
-Eigenschaft der SVGLineElement
-Schnittstelle beschreibt den x-Achsen-Koordinatenwert des Endes einer Linie als ein SVGAnimatedLength
. Sie spiegelt das <line>
-Element und das geometrische Attribut x2
wider.
Der Attributwert ist eine <length>
, <percentage>
oder <number>
. Der numerische Wert des SVGAnimatedLength.baseVal
ist diese Endposition entlang der x-Achse in Benutzereinheiten des Koordinatensystems.
Wert
Ein SVGAnimatedLength
.
Beispiel
Das folgende SVG gegeben:
<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>
Wir können auf die berechneten Werte der x2
-Attribute zugreifen:
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)
Spezifikationen
Specification |
---|
Scalable Vector Graphics (SVG) 2 # __svg__SVGLineElement__x2 |
Browser-Kompatibilität
BCD tables only load in the browser