aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/svg/element/stop/index.md
blob: d5e19bfcffa65140a8a840bf19618fcca10364af (plain)
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
92
93
94
95
96
97
98
---
title: <stop>
slug: Web/SVG/Element/stop
translation_of: Web/SVG/Element/stop
---
<div>{{SVGRef}}</div>

<p>L'élément <a href="/fr/docs/Web/SVG">SVG</a> <strong><code>&lt;stop&gt;</code></strong> définit une couleur supplémentaire dans une palette à utiliser pour un dégradé, et est contenu dans un élément {{SVGElement("linearGradient")}} ou {{SVGElement("radialGradient")}}.</p>

<h2 id="Contexte_d'utilisation">Contexte d'utilisation</h2>

<p>{{svginfo}}</p>

<h2 id="Attributs">Attributs</h2>

<h3 id="Attributs_globaux">Attributs globaux</h3>

<ul>
 <li><a href="/fr/docs/Web/SVG/Attribute#Core_attributes">Attributs de base</a></li>
 <li><a href="/fr/docs/Web/SVG/Attribute#Presentation_attributes">Attributs de présentation</a></li>
 <li>{{SVGAttr("class")}}</li>
 <li>{{SVGAttr("style")}}</li>
</ul>

<h3 id="Specific_attributes">Specific attributes</h3>

<ul>
 <li>{{SVGAttr("offset")}}</li>
 <li>{{SVGAttr("stop-color")}}</li>
 <li>{{SVGAttr("stop-opacity")}}</li>
</ul>

<h2 id="DOM_Interface">DOM Interface</h2>

<p>Cet élément implémenté l'interface {{domxref("SVGStopElement")}}.</p>

<h2 id="Exemple">Exemple</h2>

<h3 id="SVG">SVG</h3>

<pre class="brush: html">&lt;svg width="160" height="95" viewBox="0 0 80 40"
     xmlns="http://www.w3.org/2000/svg"&gt;

  &lt;defs&gt;
    &lt;linearGradient id="MyGradient"&gt;
      &lt;stop offset="5%" stop-color="#F60" /&gt;
      &lt;stop offset="95%" stop-color="#FF6" /&gt;
    &lt;/linearGradient&gt;
  &lt;/defs&gt;

  &lt;!-- Contour de la zone de dessin en noir --&gt;
  &lt;rect fill="none" stroke="black"
        x="0.5" y="0.5" width="79" height="39"/&gt;

  &lt;!-- Le rectangle est rempli avec un dégradé linéaire --&gt;
  &lt;rect fill="url(#MyGradient)" stroke="black" stroke-width="1"
        x="10" y="10" width="60" height="20"/&gt;
&lt;/svg&gt;
</pre>

<h3 id="Résultat">Résultat</h3>

<p>{{EmbedLiveSample("Exemple", 160, 95)}}</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', 'pservers.html#GradientStops', '&lt;stop&gt;')}}</td>
   <td>{{Spec2('SVG2')}}</td>
   <td> </td>
  </tr>
  <tr>
   <td>{{SpecName('SVG1.1', 'pservers.html#GradientStops', '&lt;stop&gt;')}}</td>
   <td>{{Spec2('SVG1.1')}}</td>
   <td>Définition initiale</td>
  </tr>
 </tbody>
</table>

<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>

<p>{{Compat("svg.elements.stop")}}</p>

<h2 id="Voir_aussi">Voir aussi</h2>

<ul>
 <li>{{SVGElement("linearGradient")}}</li>
 <li>{{SVGElement("radialGradient")}}</li>
</ul>