SVGUseElement: y-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 y-Eigenschaft der Schnittstelle SVGUseElement beschreibt die y-Achsen-Koordinate des Startpunkts des referenzierten Elements als SVGAnimatedLength. Sie spiegelt den berechneten Wert des y-Attributs auf dem <use>-Element wider.

Der Attributwert ist ein \<length>, \<percentage> oder \<number>. Der numerische Wert von SVGAnimatedLength.baseVal ist die y-Koordinate der oberen linken Ecke des referenzierten Elements im Benutzerkoordinatensystem.

Wert

Beispiele

Gegeben ist das folgende SVG:

html
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <circle id="circle1" cx="50" cy="50" r="40" fill="blue" />
    <circle id="circle2" cx="50" cy="50" r="40" fill="red" />
  </defs>
  <use x="50%" y="50%" href="#circle1" />
  <use x="25%" y="25%" href="#circle2" />
</svg>

Wir können auf die berechneten Werte der y-Attribute zugreifen:

js
const uses = document.querySelectorAll("use");
const yUse1 = uses[0].y;
const yUse2 = uses[1].y;

console.log(yUse1.baseVal.value); // output: 100 (50% of 200)
console.log(yUse2.baseVal.value); // output: 50 (25% of 200)

Spezifikationen

Specification
Scalable Vector Graphics (SVG) 2
# __svg__SVGUseElement__y

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch