blob: 1cfbc01ce9a862220850f36640304031fb8f8706 (
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
|
---
title: <stop>
slug: Web/SVG/Element/stop
translation_of: Web/SVG/Element/stop
---
{{SVGRef}}
L'élément [SVG](/fr/docs/Web/SVG) **`<stop>`** 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")}}.
## Contexte d'utilisation
{{svginfo}}
## Attributs
### Attributs globaux
- [Attributs de base](/fr/docs/Web/SVG/Attribute#Core_attributes)
- [Attributs de présentation](/fr/docs/Web/SVG/Attribute#Presentation_attributes)
- {{SVGAttr("class")}}
- {{SVGAttr("style")}}
### Specific attributes
- {{SVGAttr("offset")}}
- {{SVGAttr("stop-color")}}
- {{SVGAttr("stop-opacity")}}
## DOM Interface
Cet élément implémenté l'interface {{domxref("SVGStopElement")}}.
## Exemple
### SVG
```html
<svg width="160" height="95" viewBox="0 0 80 40"
xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="MyGradient">
<stop offset="5%" stop-color="#F60" />
<stop offset="95%" stop-color="#FF6" />
</linearGradient>
</defs>
<!-- Contour de la zone de dessin en noir -->
<rect fill="none" stroke="black"
x="0.5" y="0.5" width="79" height="39"/>
<!-- Le rectangle est rempli avec un dégradé linéaire -->
<rect fill="url(#MyGradient)" stroke="black" stroke-width="1"
x="10" y="10" width="60" height="20"/>
</svg>
```
### Résultat
{{EmbedLiveSample("Exemple", 160, 95)}}
## Spécifications
| Spécification | Statut | Commentaire |
| -------------------------------------------------------------------------------------------- | ------------------------ | ------------------- |
| {{SpecName('SVG2', 'pservers.html#GradientStops', '<stop>')}} | {{Spec2('SVG2')}} | |
| {{SpecName('SVG1.1', 'pservers.html#GradientStops', '<stop>')}} | {{Spec2('SVG1.1')}} | Définition initiale |
## Compatibilité des navigateurs
{{Compat("svg.elements.stop")}}
## Voir aussi
- {{SVGElement("linearGradient")}}
- {{SVGElement("radialGradient")}}
|