1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
---
title: stroke
slug: Web/SVG/Attribute/stroke
tags:
- Attribut SVG
- SVG
translation_of: Web/SVG/Attribute/stroke
---
<div>{{SVGRef}}</div>
<p>L'attribut <strong><code>stroke</code></strong> définit la couleur (ou n'importe quelle méthode de remplissage, comme un gradient ou motif) a utiliser pour dessiner le contour d'une forme SVG.</p>
<p class="note"><strong>Note:</strong> <code>stroke</code> étant un attribut de présentation, il peut être utilisé comme propriété CSS.</p>
<p>Cet attribut peut être appliqué à tout élément, 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')}}, and {{SVGElement('tspan')}}</p>
<div id="topExample">
<div class="hidden">
<pre class="brush: css">html,body,svg { height:100% }</pre>
</div>
<pre class="brush: html"><svg viewBox="0 0 20 10" xmlns="http://www.w3.org/2000/svg">
<!-- Simple trait de couleur -->
<circle cx="5" cy="5" r="4" fill="none"
stroke="green" />
<!-- Utiliser un degradé comme contour -->
<defs>
<linearGradient id="myGradient">
<stop offset="0%" stop-color="green" />
<stop offset="100%" stop-color="white" />
</linearGradient>
</defs>
<circle cx="15" cy="5" r="4" fill="none"
stroke="url(#myGradient)" />
</svg>
</pre>
<p>{{EmbedLiveSample('topExample', '100%', 200)}}</p>
</div>
<h2 id="Notes_d'usage">Notes d'usage</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="row">Valeur</th>
<td><strong><a href="/docs/Web/SVG/Content_type#Paint"><paint></a></strong></td>
</tr>
<tr>
<th scope="row">Valeur par défaut</th>
<td><code>none</code></td>
</tr>
<tr>
<th scope="row">Animation</th>
<td>Oui</td>
</tr>
</tbody>
</table>
<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#StrokeProperty", "stroke")}}</td>
<td>{{Spec2("SVG2")}}</td>
<td>Définition pour les formes et le texte.<br>
Ajoute <code style="white-space: nowrap;">context-fill</code> et <code style="white-space: nowrap;">context-stroke</code>.</td>
</tr>
<tr>
<td>{{SpecName("SVG1.1", "painting.html#StrokeProperty", "stroke")}}</td>
<td>{{Spec2("SVG1.1")}}</td>
<td>Définiton initiale pour les formes et le texte</td>
</tr>
</tbody>
</table>
<h2 id="Browser_Compatibility" name="Browser_Compatibility">Compatibilité des navigateurs</h2>
<p>{{Compat("svg.attributes.presentation.stroke")}}</p>
<p class="note"><strong>Note:</strong> Pour plus d'informations sur les valeurs de <code style="white-space: nowrap;">context-stroke</code> (et <code style="white-space: nowrap;">context-fill</code>) à partir de documents HTML, voir la documentation pour la propriété non-standard <span style="white-space: nowrap;">{{cssxref("-moz-context-properties")}}</span>.</p>
|