From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/fr/web/svg/attribute/stroke-width/index.html | 93 ++++++++++++++++++++++ 1 file changed, 93 insertions(+) create mode 100644 files/fr/web/svg/attribute/stroke-width/index.html (limited to 'files/fr/web/svg/attribute/stroke-width') diff --git a/files/fr/web/svg/attribute/stroke-width/index.html b/files/fr/web/svg/attribute/stroke-width/index.html new file mode 100644 index 0000000000..2850964c73 --- /dev/null +++ b/files/fr/web/svg/attribute/stroke-width/index.html @@ -0,0 +1,93 @@ +--- +title: stroke-width +slug: Web/SVG/Attribute/stroke-width +tags: + - SVG + - SVG Attribute +translation_of: Web/SVG/Attribute/stroke-width +--- +
{{SVGRef}}
+ +

L'attribut stroke-width définit l'épaisseur du contour à appliquer à une forme SVG.

+ +

Note: stroke-width étant un attribut de présentation, il peut être utilisé comme propriété CSS.

+ +

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')}}

+ +
+ + +
<svg viewBox="0 0 30 10" xmlns="http://www.w3.org/2000/svg">
+  <!-- Épaisseur par défaut: 1 -->
+  <circle cx="5" cy="5" r="3" stroke="green" />
+
+  <!-- Définit l'épaisseur avec un nombre -->
+  <circle cx="15" cy="5" r="3" stroke="green"
+          stroke-width="3" />
+
+  <!-- Définit l'épaisseur avec un pourcentage -->
+  <circle cx="25" cy="5" r="3" stroke="green"
+          stroke-width="2%" />
+</svg>
+ +

{{EmbedLiveSample('topExample', '100%', 150)}}

+
+ +

Notes d'usage

+ + + + + + + + + + + + + + + + +
Valeur<length> | <percentage>
Valeur par défaut1px
AnimationOui
+ +

Note: SVG2 introduit les valeurs en pourcentage pour stroke-width, Cependant, ce n'est pas souvent pris en charge pour le moment (voir {{anch('Compatibilité des navigateurs')}} ci-dessous). Il est par conséquent recommandé d'utiliser les valeurs de l'intervalle [0-1].

+ +

Une valeur en pourcentage est toujours calculée en tant que pourcentage de la longueur diagonale {{SVGAttr('viewBox')}} normalisée.

+ +

Compatibilité des navigateurs

+ + + +

{{Compat("svg.attributes.presentation.stroke-width")}}

+ +

Spécification

+ + + + + + + + + + + + + + + + + + + + + +
SpécificationStatutCommentaire
{{SpecName("SVG2", "painting.html#StrokeWidthProperty", "stroke-width")}}{{Spec2("SVG2")}} +

Définition pour les formes et le texte

+ + +
{{SpecName("SVG1.1", "painting.html#StrokeWidthProperty", "stroke-width")}}{{Spec2("SVG1.1")}}Définition initiale pour les formes et le texte
-- cgit v1.2.3-54-g00ecf