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: fill-opacity
slug: Web/SVG/Attribute/fill-opacity
tags:
- SVG
- SVG Attribute
translation_of: Web/SVG/Attribute/fill-opacity
---
<div>{{SVGRef}}</div>
<p>L'attribut <strong><code>fill-opacity</code></strong> définit l'opacité du remplissage (<em>couleur, dégradé, motif</em>, etc) appliqué à une forme.</p>
<p class="note"><strong>Note:</strong> <code>fill-opacity</code> étant un attribut de présentation, il peut être utilisé comme propriété CSS.</p>
<p>Cet attribut peut être appliqué sur 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>
<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 400 100" xmlns="http://www.w3.org/2000/svg">
<!-- Opacité par défaut: 1 -->
<circle cx="50" cy="50" r="40" />
<!-- Définit l'opacité avec un nombre -->
<circle cx="150" cy="50" r="40"
fill-opacity="0.7" />
<!-- Définit l'opaité avec un pourcentage -->
<circle cx="250" cy="50" r="40"
fill-opacity="50%" />
<!-- Définit l'opacité avec une propriété CSS -->
<circle cx="350" cy="50" r="40"
style="fill-opacity: .25;" />
</svg></pre>
<p>{{EmbedLiveSample('topExample', '100%', 150)}}</p>
</div>
<h2 id="Notes_d'utilisation">Notes d'utilisation</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>
<p class="note"><strong>Note:</strong> SVG2 introduit les valeurs en pourcentage pour <code>fill-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 recommandé d'utiiser les valeurs de l'intervalle <code>[0-1]</code>.</p>
<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
<p class="hidden">Le tableau de compatibilité de cette page a été généré à partir de données structurées. Si vous souhaitez contribuer à ces données, n'hésitez pas à envoyer une <em>pull request</em> sur <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a>.</p>
<p>{{Compat("svg.attributes.presentation.fill-opacity")}}</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", "painting.html#FillOpacityProperty", "fill-opacity")}}</td>
<td>{{Spec2("SVG2")}}</td>
<td>Définition pour les formes et le texte.</td>
</tr>
<tr>
<td>{{SpecName("SVG1.1", "painting.html#FillOpacityProperty", "fill-opacity")}}</td>
<td>{{Spec2("SVG1.1")}}</td>
<td>Définition initiale pour les formes et le texte.</td>
</tr>
</tbody>
</table>
|