<stop>
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
<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
Spezifikationen
No specification found
No specification data found for undefined
.
Check for problems with this page or contribute a missing spec_url
to mdn/browser-compat-data. Also make sure the specification is included in w3c/browser-specs.