<stop>

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.

Das <stop> SVG-Element definiert eine Farbe und deren Position zur Verwendung in einem Verlaufsfeld. Dieses Element ist immer ein Kind eines <linearGradient>- oder <radialGradient>-Elements.

Beispiel

html
<svg
  viewBox="0 0 10 10"
  xmlns="http://www.w3.org/2000/svg"
  xmlns:xlink="http://www.w3.org/1999/xlink">
  <defs>
    <linearGradient id="myGradient" gradientTransform="rotate(90)">
      <stop offset="5%" stop-color="gold" />
      <stop offset="95%" stop-color="red" />
    </linearGradient>
  </defs>

  <!-- using my linear gradient -->
  <circle cx="5" cy="5" r="4" fill="url('#myGradient')" />
</svg>

Attribute

offset

Dieses Attribut definiert, wo der Verlaufsstopp entlang des Verlaufsvektors platziert wird. Werttyp: <number>|<percentage>; Standardwert: 0; Animierbar: ja

stop-color

Dieses Attribut definiert die Farbe des Verlaufsstopps. Es kann als CSS-Eigenschaft verwendet werden. Werttyp: <color>; Standardwert: black; Animierbar: ja

stop-opacity

Dieses Attribut definiert die Deckkraft des Verlaufsstopps. Es kann als CSS-Eigenschaft verwendet werden. Werttyp: <opacity-value>; Standardwert: 1; Animierbar: ja

Nutzungskontext

KategorienGradient-Element
Erlaubter InhaltBeliebige Anzahl folgender Elemente, in beliebiger Reihenfolge:
<animate>, <script>, <set>, <style>

Spezifikationen

Specification
Scalable Vector Graphics (SVG) 2
# StopElement

Browser-Kompatibilität

BCD tables only load in the browser