fill-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.
Die fill-opacity
CSS Eigenschaft definiert die Deckkraft des Malvorgangs (Farbe, Verlauf, Muster usw.), der auf SVG-Formen oder Textelemente angewendet wird, um das Element auszufüllen. Die Eigenschaft definiert nur die Deckkraft des fill
des Elements; sie beeinflusst nicht den stroke
. Falls vorhanden, überschreibt sie das fill-opacity
Attribut des Elements.
Hinweis: Die fill-opacity
Eigenschaft gilt nur für <circle>
, <ellipse>
, <path>
, <polygon>
, <polyline>
, <rect>
, <text>
, <textPath>
und <tspan>
Elemente, die in einem <svg>
verschachtelt sind. Sie gilt nicht für andere SVG-, HTML- oder Pseudo-Elemente.
Syntax
/* numeric and percentage values */
fill-opacity: 0.2;
fill-opacity: 20%;
/* Global values */
fill-opacity: inherit;
fill-opacity: initial;
fill-opacity: revert;
fill-opacity: revert-layer;
fill-opacity: unset;
Werte
Die <number>
und <percentage>
Werte geben die Deckkraft des fill
des Elements an.
<number>
-
Ein Zahlenwert zwischen
0
und1
, einschließlich. <percentage>
-
Ein Prozentwert zwischen
0%
und100%
, einschließlich.
Bei 0
oder 0%
ist das Element vollständig transparent. Bei 1
oder 100%
ist das Element vollständig undurchsichtig. Bei Werten dazwischen ist das Element halbtransparent, und der Inhalt hinter dem Element ist sichtbar.
Formale Definition
Initialer Wert | 1 |
---|---|
Anwendbar auf | SVG shapes and text content elements |
Vererbt | Ja |
Prozentwerte | map to the range [0,1] |
Berechneter Wert | Derselbe wie der angegebene Wert nachdem die number auf den Bereich [0.0, 1.0] zugeschnitten wurde. |
Animationstyp | by computed value type |
Formale Syntax
fill-opacity =
<'opacity'>
<opacity> =
<opacity-value>
<opacity-value> =
<number> |
<percentage>
Beispiele
Festlegen der Deckkraft von SVG-Elementen
Dieses Beispiel zeigt den grundlegenden Anwendungsfall von fill-opacity
und wie die CSS-Eigenschaft fill-opacity
Vorrang vor dem fill-opacity
Attribut hat und keinerlei Einfluss auf einen etwaigen stroke
einer Form hat.
HTML
Wir fügen mehrere verschiedene SVG-Grafikelemente ein und setzen das fill-opacity
Attribut jedes einzelnen auf 1
(außer line
), was bedeutet, dass die Füllung jedes Elements undurchsichtig ist. Das fill-opacity
SVG-Attribut gilt nicht für <line>
.
<svg viewBox="0 0 100 150" xmlns="http://www.w3.org/2000/svg">
<rect x="10" y="10" width="30" height="30" fill-opacity="1" />
<rect x="60" y="10" rx="10" ry="10" width="30" height="30" fill-opacity="1" />
<circle cx="25" cy="75" r="20" fill-opacity="1" />
<ellipse cx="75" cy="75" rx="20" ry="10" fill-opacity="1" />
<line x1="50" x2="90" y1="40" y2="60" stroke="black" stroke-width="5" />
<polyline
points="60 90 65 100 70 95 75 110 80 105 85 120 90 115 95 130 100 125"
fill-opacity="1" />
<path d="M20,130 Q40,105 50,130 T90,130" fill-opacity="1" />
</svg>
CSS
Mit CSS verwenden wir die fill-opacity
Eigenschaft, um den Wert des SVG-fill-opacity
Attributs zu überschreiben und jedem SVG-Element einen anderen Wert zu geben.
Wir fügen einen stroke
zum Kreis und zur Ellipse hinzu, um zu demonstrieren, dass die Deckkraft des stroke
nicht von der fill-opacity
Eigenschaft beeinträchtigt wird.
Andere SVG-Stile werden gesetzt, einschließlich eines Hintergrundbildes, um die Deckkraft jedes Elements leichter sichtbar zu machen. Diese sind aus Gründen der Kürze nicht gezeigt.
svg > * {
fill: black;
}
rect:last-of-type {
fill-opacity: 0.1;
}
circle {
fill-opacity: 0.6;
}
ellipse {
fill-opacity: 40%;
}
line {
fill-opacity: 10%;
}
polyline {
fill-opacity: 50%;
}
path {
fill-opacity: 0.5;
}
circle,
ellipse {
stroke: black;
stroke-width: 3px;
}
Ergebnisse
Nur zwei Elemente sind vollständig undurchsichtig: das erste Rechteck und die Linie. Das erste Rechteck wird von keinem der Selektoren erfasst, daher wird kein CSS angewendet und das fill
ist vollständig undurchsichtig. Die line
wird erfasst, mit fill-opacity: 10%
gesetzt. Da die Linie jedoch keine fill
-Farboperation hat — nur der stroke
ist sichtbar — hat die Deklaration keinen Effekt.
Spezifikationen
Specification |
---|
CSS Fill and Stroke Module Level 3 # fill-opacity |
Browser-Kompatibilität
BCD tables only load in the browser
Siehe auch
- SVG
fill-opacity
Attribut - Präsentationseigenschaften:
fill-opacity
,clip-rule
,color-interpolation-filters
,fill-rule
,fill
,marker-end
,marker-mid
,marker-start
,shape-rendering
,stop-color
,stop-opacity
,stroke
,stroke-dasharray
,stroke-dashoffset
,stroke-linecap
,stroke-linejoin
,stroke-miterlimit
,stroke-opacity
,stroke-width
,text-anchor
, undvector-effect
opacity
background-color
<color>
<basic-shape>
Datentyp