stroke-opacity
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2020.
Das stroke-opacity
Attribut ist ein Präsentationsattribut, das die Deckkraft des Farbgebers (Farbe, Verlauf, Muster usw.) definiert, der auf den Rand einer Form angewendet wird.
Hinweis: Als Präsentationsattribut kann stroke-opacity
als CSS-Eigenschaft verwendet werden. Siehe stroke-opacity
für mehr Informationen.
Sie können dieses Attribut mit den folgenden SVG-Elementen verwenden:
Beispiel
<svg viewBox="0 0 40 10" xmlns="http://www.w3.org/2000/svg">
<!-- Default stroke opacity: 1 -->
<circle cx="5" cy="5" r="4" stroke="green" />
<!-- Stroke opacity as a number -->
<circle cx="15" cy="5" r="4" stroke="green" stroke-opacity="0.7" />
<!-- Stroke opacity as a percentage -->
<circle cx="25" cy="5" r="4" stroke="green" stroke-opacity="50%" />
<!-- Stroke opacity as a CSS property -->
<circle cx="35" cy="5" r="4" stroke="green" style="stroke-opacity: .3;" />
</svg>
Hinweise zur Nutzung
Wert |
[0-1] |
<percentage>
|
---|---|
Standardwert | 1 |
Animierbar | Ja |
Es ist wichtig zu wissen, dass der Rand teilweise die Füllung einer Form überdeckt. Ein Rand mit einer Deckkraft ungleich 1
wird die darunterliegende Füllung teilweise sichtbar machen. Um diesen Effekt zu vermeiden, kann eine globale Deckkraft mit dem opacity
Attribut angewendet oder der Rand hinter die Füllung mit dem paint-order
Attribut verschoben werden.
Spezifikationen
Specification |
---|
Scalable Vector Graphics (SVG) 2 # StrokeOpacity |
Browser-Kompatibilität
BCD tables only load in the browser
Siehe auch
CSS Eigenschaften:
SVG Attribute: