<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 SVG-Element <stop>
definiert eine Farbe und deren Position zur Verwendung in einem Farbverlauf. Dieses Element ist immer ein Kind eines <linearGradient>
- oder <radialGradient>
-Elements.
Beispiel
<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 Farbverlaufsstopp entlang des Farbverlaufsvektors platziert wird. Werttyp: <number>|<percentage>; Standardwert:
0
; Animierbar: ja stop-color
-
Dieses Attribut definiert die Farbe des Farbverlaufsstopps. Es kann als CSS-Eigenschaft verwendet werden. Werttyp:
currentcolor
|<color>|<icccolor>; Standardwert:black
; Animierbar: ja stop-opacity
-
Dieses Attribut definiert die Deckkraft des Farbverlaufsstopps. Es kann als CSS-Eigenschaft verwendet werden. Werttyp: <opacity>; Standardwert:
1
; Animierbar: ja
Nutzungskontext
Spezifikationen
Specification |
---|
Scalable Vector Graphics (SVG) 2 # GradientStops |
Browser-Kompatibilität
BCD tables only load in the browser