diff options
Diffstat (limited to 'files/fr/web/svg/element/fedropshadow/index.md')
-rw-r--r-- | files/fr/web/svg/element/fedropshadow/index.md | 182 |
1 files changed, 83 insertions, 99 deletions
diff --git a/files/fr/web/svg/element/fedropshadow/index.md b/files/fr/web/svg/element/fedropshadow/index.md index 391d58637e..93a56d534c 100644 --- a/files/fr/web/svg/element/fedropshadow/index.md +++ b/files/fr/web/svg/element/fedropshadow/index.md @@ -7,102 +7,86 @@ tags: - SVG Filter translation_of: Web/SVG/Element/feDropShadow --- -<div>{{SVGRef}}</div> - -<p>La primitive de filtre <strong><code><feDropShadow></code></strong> crée une ombre portée pour l'image en entrée. Il s'agit d'un raccourci, le résultat du filtre <code><feDropShadow></code> revient à appliquer les primitives suivantes:</p> - -<pre class="brush: xml"><feGaussianBlur in="alpha-channel-of-feDropShadow-in" - stdDeviation="stdDeviation-of-feDropShadow"/> -<feOffset dx="dx-of-feDropShadow" dy="dy-of-feDropShadow" - result="offsetblur"/> -<feFlood flood-color="flood-color-of-feDropShadow" - flood-opacity="flood-opacity-of-feDropShadow"/> -<feComposite in2="offsetblur" operator="in"/> -<feMerge> - <feMergeNode/> - <feMergeNode in="in-of-feDropShadow"/> -</feMerge> -</pre> - -<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#Attributs_de_base">Attributs de base</a></li> - <li><a href="/fr/docs/Web/SVG/Attribute#Attributs_de_présentation">Attributs de présentation</a></li> - <li><a href="/fr/docs/Web/SVG/Attribute#Attributs_de_primitives_de_filtre">Attributs de primitive de filtre</a></li> -</ul> - -<h3 id="Attributs_spécifiques">Attributs spécifiques</h3> - -<ul> - <li>{{SVGAttr("class")}}</li> - <li>{{SVGAttr("style")}}</li> - <li>{{SVGAttr("in")}}</li> - <li>{{SVGAttr("stdDeviation")}}</li> - <li>{{SVGAttr("dx")}}</li> - <li>{{SVGAttr("dy")}}</li> -</ul> - -<h2 id="Interface_DOM">Interface DOM</h2> - -<p>Cet élément implémente l'interface {{domxref("SVGFEDropShadowElement")}}.</p> - -<h2 id="Exemple">Exemple</h2> - -<h3 id="SVG">SVG</h3> - -<pre class="brush: html"><svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"> - <defs> - <filter id="shadow"> - <feDropShadow dx="4" dy="8" stdDeviation="4"/> - </filter> - </defs> - - <circle cx="50%" cy="50%" r="80" - style="fill:blue; filter:url(#shadow);"/> -</svg></pre> - -<h3 id="Résultat">Résultat</h3> - -<p>{{EmbedLiveSample("Exemple", 200, 200)}}</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("Filters 1.0", "#feDropShadow", "<feDistantLight>")}}</td> - <td>{{Spec2("Filters 1.0")}}</td> - <td>Définition initiale</td> - </tr> - </tbody> -</table> - -<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> - -<p>{{Compat("svg.elements.feDropShadow")}}</p> - -<h2 id="Voir_aussi">Voir aussi</h2> - -<ul> - <li>{{SVGElement("filter")}}</li> - <li>{{SVGElement("feGaussianBlur")}}</li> - <li>{{SVGElement("feOffset")}}</li> - <li>{{SVGElement("feFlood")}}</li> - <li>{{SVGElement("feComposite")}}</li> - <li>{{SVGElement("feMerge")}}</li> - <li><a href="/fr/docs/Web/SVG/Tutoriel/filtres">Tutoriel SVG: Filtres</a></li> -</ul> +{{SVGRef}} + +La primitive de filtre **`<feDropShadow>`** crée une ombre portée pour l'image en entrée. Il s'agit d'un raccourci, le résultat du filtre `<feDropShadow>` revient à appliquer les primitives suivantes: + +```xml +<feGaussianBlur in="alpha-channel-of-feDropShadow-in" + stdDeviation="stdDeviation-of-feDropShadow"/> +<feOffset dx="dx-of-feDropShadow" dy="dy-of-feDropShadow" + result="offsetblur"/> +<feFlood flood-color="flood-color-of-feDropShadow" + flood-opacity="flood-opacity-of-feDropShadow"/> +<feComposite in2="offsetblur" operator="in"/> +<feMerge> + <feMergeNode/> + <feMergeNode in="in-of-feDropShadow"/> +</feMerge> +``` + +## Contexte d'utilisation + +{{svginfo}} + +## Attributs + +### Attributs globaux + +- [Attributs de base](/fr/docs/Web/SVG/Attribute#Attributs_de_base) +- [Attributs de présentation](/fr/docs/Web/SVG/Attribute#Attributs_de_présentation) +- [Attributs de primitive de filtre](/fr/docs/Web/SVG/Attribute#Attributs_de_primitives_de_filtre) + +### Attributs spécifiques + +- {{SVGAttr("class")}} +- {{SVGAttr("style")}} +- {{SVGAttr("in")}} +- {{SVGAttr("stdDeviation")}} +- {{SVGAttr("dx")}} +- {{SVGAttr("dy")}} + +## Interface DOM + +Cet élément implémente l'interface {{domxref("SVGFEDropShadowElement")}}. + +## Exemple + +### SVG + +```html +<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"> + <defs> + <filter id="shadow"> + <feDropShadow dx="4" dy="8" stdDeviation="4"/> + </filter> + </defs> + + <circle cx="50%" cy="50%" r="80" + style="fill:blue; filter:url(#shadow);"/> +</svg> +``` + +### Résultat + +{{EmbedLiveSample("Exemple", 200, 200)}} + +## Spécifications + +| Spécification | Statut | Commentaire | +| -------------------------------------------------------------------------------------------- | -------------------------------- | ------------------- | +| {{SpecName("Filters 1.0", "#feDropShadow", "<feDistantLight>")}} | {{Spec2("Filters 1.0")}} | Définition initiale | + +## Compatibilité des navigateurs + +{{Compat("svg.elements.feDropShadow")}} + +## Voir aussi + +- {{SVGElement("filter")}} +- {{SVGElement("feGaussianBlur")}} +- {{SVGElement("feOffset")}} +- {{SVGElement("feFlood")}} +- {{SVGElement("feComposite")}} +- {{SVGElement("feMerge")}} +- [Tutoriel SVG: Filtres](/fr/docs/Web/SVG/Tutoriel/filtres) |