aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/svg/attribute/fill-opacity/index.md
diff options
context:
space:
mode:
Diffstat (limited to 'files/fr/web/svg/attribute/fill-opacity/index.md')
-rw-r--r--files/fr/web/svg/attribute/fill-opacity/index.md91
1 files changed, 91 insertions, 0 deletions
diff --git a/files/fr/web/svg/attribute/fill-opacity/index.md b/files/fr/web/svg/attribute/fill-opacity/index.md
new file mode 100644
index 0000000000..82e5f456c3
--- /dev/null
+++ b/files/fr/web/svg/attribute/fill-opacity/index.md
@@ -0,0 +1,91 @@
+---
+title: fill-opacity
+slug: Web/SVG/Attribute/fill-opacity
+tags:
+ - SVG
+ - SVG Attribute
+translation_of: Web/SVG/Attribute/fill-opacity
+---
+<div>{{SVGRef}}</div>
+
+<p>L'attribut <strong><code>fill-opacity</code></strong> définit l'opacité du remplissage (<em>couleur, dégradé, motif</em>, etc) appliqué à une forme.</p>
+
+<div class="note">
+ <p><strong>Note :</strong> <code>fill-opacity</code> étant un attribut de présentation, il peut être utilisé comme propriété CSS.</p>
+</div>
+
+<p>Cet attribut peut être appliqué sur tous les éléments, en revanche il n'aura d'effet que sur les éléments suivants: {{SVGElement('altGlyph')}}, {{SVGElement('circle')}}, {{SVGElement('ellipse')}}, {{SVGElement('path')}}, {{SVGElement('polygon')}}, {{SVGElement('polyline')}}, {{SVGElement('rect')}}, {{SVGElement('text')}}, {{SVGElement('textPath')}}, {{SVGElement('tref')}}, et {{SVGElement('tspan')}}</p>
+
+<h2>Exemple</h2>
+
+<pre class="brush: css hidden">html,body,svg { height:100% }</pre>
+
+<pre class="brush: html">&lt;svg viewBox="0 0 400 100" xmlns="http://www.w3.org/2000/svg"&gt;
+ &lt;!-- Opacité par défaut: 1 --&gt;
+ &lt;circle cx="50" cy="50" r="40" /&gt;
+
+ &lt;!-- Définit l'opacité avec un nombre --&gt;
+ &lt;circle cx="150" cy="50" r="40"
+ fill-opacity="0.7" /&gt;
+
+ &lt;!-- Définit l'opaité avec un pourcentage --&gt;
+ &lt;circle cx="250" cy="50" r="40"
+ fill-opacity="50%" /&gt;
+
+ &lt;!-- Définit l'opacité avec une propriété CSS --&gt;
+ &lt;circle cx="350" cy="50" r="40"
+ style="fill-opacity: .25;" /&gt;
+&lt;/svg&gt;</pre>
+
+<p>{{EmbedLiveSample('exemple', '100%', 150)}}</p>
+
+<h2 id="Notes_d'utilisation">Notes d'utilisation</h2>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th scope="row">Valeur</th>
+ <td><code>[0-1]</code> | <strong><a href="/docs/Web/SVG/Content_type#Paint">&lt;percentage&gt;</a></strong></td>
+ </tr>
+ <tr>
+ <th scope="row">Valeur par défaut</th>
+ <td><code>1</code></td>
+ </tr>
+ <tr>
+ <th scope="row">Animation</th>
+ <td>Oui</td>
+ </tr>
+ </tbody>
+</table>
+
+<div class="note">
+ <p><strong>Note :</strong> SVG2 introduit les valeurs en pourcentage pour <code>fill-opacity</code>. Cependant,  ce n'est pas souvent pris en charge pour le moment (<em>Voir {{anch('Compatibilité des navigateurs')}} ci-dessous</em>). Il est par conséquent recommandé d'utiliser les valeurs de l'intervalle <code>[0-1]</code>.</p>
+</div>
+
+<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
+
+<p>{{Compat("svg.attributes.presentation.fill-opacity")}}</p>
+
+<h2 id="Spécifications">Spécifications</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">Spécification</th>
+ <th scope="col">Statut</th>
+ <th scope="col">Commentaire</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{SpecName("SVG2", "painting.html#FillOpacityProperty", "fill-opacity")}}</td>
+ <td>{{Spec2("SVG2")}}</td>
+ <td>Définition pour les formes et le texte.</td>
+ </tr>
+ <tr>
+ <td>{{SpecName("SVG1.1", "painting.html#FillOpacityProperty", "fill-opacity")}}</td>
+ <td>{{Spec2("SVG1.1")}}</td>
+ <td>Définition initiale pour les formes et le texte.</td>
+ </tr>
+ </tbody>
+</table>