diff options
Diffstat (limited to 'files/fr/web/svg/attribute/stroke-opacity/index.md')
-rw-r--r-- | files/fr/web/svg/attribute/stroke-opacity/index.md | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/files/fr/web/svg/attribute/stroke-opacity/index.md b/files/fr/web/svg/attribute/stroke-opacity/index.md new file mode 100644 index 0000000000..c1ba3c17f0 --- /dev/null +++ b/files/fr/web/svg/attribute/stroke-opacity/index.md @@ -0,0 +1,93 @@ +--- +title: stroke-opacity +slug: Web/SVG/Attribute/stroke-opacity +tags: + - SVG + - SVG Attribute +translation_of: Web/SVG/Attribute/stroke-opacity +--- +<div>{{SVGRef}}</div> + +<p>L'attribut <strong><code>stroke-opacity</code></strong> définit l'opacité du contour (<em>couleur</em>, <em>dégradé</em>, <em>motif</em>, etc) appliqué à une forme SVG.</p> + +<div class="note"> + <p><strong>Note :</strong> <code>stroke-opacity</code> étant un attribut de présentation, il peut être utilisé comme propriété CSS.</p> +</div> + +<p>Cet attribut peut être appliqué à 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"><svg viewBox="0 0 40 10" xmlns="http://www.w3.org/2000/svg"> + <!-- Opacité par défaut: 1 --> + <circle cx="5" cy="5" r="4" stroke="green" /> + + <!-- Définit l'opacité avec un nombre entre 0 et 1--> + <circle cx="15" cy="5" r="4" stroke="green" + stroke-opacity="0.7" /> + + <!-- Définit l'opacité avec un pourcentage --> + <circle cx="25" cy="5" r="4" stroke="green" + stroke-opacity="50%" /> + + <!-- Définit l'opacité comme propriété CSS --> + <circle cx="35" cy="5" r="4" stroke="green" + style="stroke-opacity: .3;" /> +</svg></pre> + +<p>{{EmbedLiveSample('exemple', '100%', 150)}}</p> + +<h2 id="Notes_d'usage">Notes d'usage</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"><percentage></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>stroke-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 recommendé d'utiliser les valeurs de l'intervalle <code>[0-1]</code>.</p> +</div> + +<p>Il est important de savoir que le contour recouvre partiellement le remplissage d'une forme. Ainsi, un contour avec une opacité différente de 1 affichera partiellement le remplissage du dessous. Pour éviter cet effet, il est possible d'appliquer une opacité globale avec l'attribut {{SVGAttr('opacity')}} ou placer le contour derrière le remplissage avec {{SVGAttr('paint-order')}}.</p> + +<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> + +<p>{{Compat("svg.attributes.presentation.stroke-opacity")}}</p> + +<h2 id="Spécification">Spécification</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#StrokeOpacityProperty", "stroke-opacity")}}</td> + <td>{{Spec2("SVG2")}}</td> + <td>Définition pour les formes et le texte</td> + </tr> + <tr> + <td>{{SpecName("SVG1.1", "painting.html#StrokeOpacityProperty", "stroke-opacity")}}</td> + <td>{{Spec2("SVG1.1")}}</td> + <td>Définition initiale pour les formes et le texte</td> + </tr> + </tbody> +</table> |