Dieser Inhalt wurde automatisch aus dem Englischen übersetzt, und kann Fehler enthalten. Erfahre mehr über dieses Experiment.

View in English Always switch to English

SVGLinearGradientElement: y1-Eigenschaft

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨Juli 2015⁩.

Die y1 schreibgeschützte Eigenschaft der SVGLinearGradientElement-Schnittstelle beschreibt die y-Achsen-Koordinate des Startpunkts des Verlaufs als SVGAnimatedLength. Sie spiegelt den berechneten Wert des y1-Attributs auf dem <linearGradient>-Element wider.

Der Attributwert ist ein \<length>, \<percentage> oder \<number>. Der numerische Wert des SVGAnimatedLength.baseVal ist die y-Koordinate des Startpunkts des Verlaufs im Benutzersystem.

Wert

Ein SVGAnimatedLength.

Beispiel

Gegeben sei folgendes SVG:

html
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="gradient1" x1="50%" y1="0%" x2="50%" y2="100%">
      <stop offset="0%" stop-color="blue" />
      <stop offset="100%" stop-color="white" />
    </linearGradient>
    <linearGradient id="gradient2" x1="25%" y1="0%" x2="75%" y2="100%">
      <stop offset="0%" stop-color="red" />
      <stop offset="100%" stop-color="yellow" />
    </linearGradient>
  </defs>
  <rect x="0" y="0" width="200" height="100" fill="url(#gradient1)" />
  <rect x="0" y="100" width="200" height="100" fill="url(#gradient2)" />
</svg>

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

js
const linearGradients = document.querySelectorAll("linearGradient");
const y1Gradient1 = linearGradients[0].y1;
const y1Gradient2 = linearGradients[1].y1;

console.dir(y1Gradient1.baseVal.value); // output: 0 (0% of 200)
console.dir(y1Gradient2.baseVal.value); // output: 0 (0% of 200)

Spezifikationen

Specification
Scalable Vector Graphics (SVG) 2
# __svg__SVGLinearGradientElement__y1

Browser-Kompatibilität

Siehe auch