From 7040e4bc9c98e0c50ce903a5cbeeabeda2ed908a Mon Sep 17 00:00:00 2001 From: julieng Date: Mon, 1 Nov 2021 07:51:27 +0100 Subject: move *.html to *.md --- files/fr/web/svg/element/feflood/index.html | 108 ---------------------------- files/fr/web/svg/element/feflood/index.md | 108 ++++++++++++++++++++++++++++ 2 files changed, 108 insertions(+), 108 deletions(-) delete mode 100644 files/fr/web/svg/element/feflood/index.html create mode 100644 files/fr/web/svg/element/feflood/index.md (limited to 'files/fr/web/svg/element/feflood') diff --git a/files/fr/web/svg/element/feflood/index.html b/files/fr/web/svg/element/feflood/index.html deleted file mode 100644 index b5f47f0e41..0000000000 --- a/files/fr/web/svg/element/feflood/index.html +++ /dev/null @@ -1,108 +0,0 @@ ---- -title: -slug: Web/SVG/Element/feFlood -tags: - - SVG - - SVG Filter -translation_of: Web/SVG/Element/feFlood ---- -
{{SVGRef}}
- -

La primitive de filtre SVG <feFlood> remplit la région du filtre avec la couleur et l'opacité définies par {{SVGAttr("flood-color")}} et {{SVGAttr("flood-opacity")}}.

- -

Contexte d'utilisation

- -

{{svginfo}}

- -

Attributs

- -

Attributs globaux

- - - -

Attributs spécifiques

- - - -

Interface DOM

- -

Cet élément implémente l'interface {{domxref("SVGFEFloodElement")}}.

- -

Exemple

- -
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200">
-  <defs>
-    <filter id="floodFilter" filterUnits="userSpaceOnUse">
-      <feFlood x="50" y="50" width="100" height="100"
-          flood-color="green" flood-opacity="0.5"/>
-    </filter>
-  </defs>
-
-  <use style="filter: url(#floodFilter);"/>
-</svg>
- -

{{EmbedLiveSample("Exemple", 200, 200)}}

- -

Spécifications

- - - - - - - - - - - - - - - - - - - - - -
SpécificationStatutCommentaire
{{SpecName('Filters 1.0', '#feFloodElement', '<feFlood>')}}{{Spec2('Filters 1.0')}} -

Supprime la valeur <icccolor> de la propriété {{cssxref("flood-color")}} et définit que le canal alpha est multiplié par la valeur de la propriété {{cssxref("flood-opacity")}}. Clarifie la valeur de la propriété flood-opacity.

-
{{SpecName('SVG1.1', 'filters.html#feFloodElement', '<feFlood>')}}{{Spec2('SVG1.1')}}Définition initiale
- -

Compatibilité des navigateurs

- -

{{Compat("svg.elements.feFlood")}}

- -

Voir aussi

- - diff --git a/files/fr/web/svg/element/feflood/index.md b/files/fr/web/svg/element/feflood/index.md new file mode 100644 index 0000000000..b5f47f0e41 --- /dev/null +++ b/files/fr/web/svg/element/feflood/index.md @@ -0,0 +1,108 @@ +--- +title: +slug: Web/SVG/Element/feFlood +tags: + - SVG + - SVG Filter +translation_of: Web/SVG/Element/feFlood +--- +
{{SVGRef}}
+ +

La primitive de filtre SVG <feFlood> remplit la région du filtre avec la couleur et l'opacité définies par {{SVGAttr("flood-color")}} et {{SVGAttr("flood-opacity")}}.

+ +

Contexte d'utilisation

+ +

{{svginfo}}

+ +

Attributs

+ +

Attributs globaux

+ + + +

Attributs spécifiques

+ +
    +
  • {{SVGAttr("flood-color")}}
  • +
  • {{SVGAttr("flood-opacity")}}
  • +
+ +

Interface DOM

+ +

Cet élément implémente l'interface {{domxref("SVGFEFloodElement")}}.

+ +

Exemple

+ +
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200">
+  <defs>
+    <filter id="floodFilter" filterUnits="userSpaceOnUse">
+      <feFlood x="50" y="50" width="100" height="100"
+          flood-color="green" flood-opacity="0.5"/>
+    </filter>
+  </defs>
+
+  <use style="filter: url(#floodFilter);"/>
+</svg>
+ +

{{EmbedLiveSample("Exemple", 200, 200)}}

+ +

Spécifications

+ + + + + + + + + + + + + + + + + + + + + +
SpécificationStatutCommentaire
{{SpecName('Filters 1.0', '#feFloodElement', '<feFlood>')}}{{Spec2('Filters 1.0')}} +

Supprime la valeur <icccolor> de la propriété {{cssxref("flood-color")}} et définit que le canal alpha est multiplié par la valeur de la propriété {{cssxref("flood-opacity")}}. Clarifie la valeur de la propriété flood-opacity.

+
{{SpecName('SVG1.1', 'filters.html#feFloodElement', '<feFlood>')}}{{Spec2('SVG1.1')}}Définition initiale
+ +

Compatibilité des navigateurs

+ +

{{Compat("svg.elements.feFlood")}}

+ +

Voir aussi

+ +
    +
  • {{SVGElement("filter")}}
  • +
  • {{SVGElement("animate")}}
  • +
  • {{SVGElement("animateColor")}}
  • +
  • {{SVGElement("set")}}
  • +
  • {{SVGElement("feBlend")}}
  • +
  • {{SVGElement("feColorMatrix")}}
  • +
  • {{SVGElement("feComponentTransfer")}}
  • +
  • {{SVGElement("feComposite")}}
  • +
  • {{SVGElement("feConvolveMatrix")}}
  • +
  • {{SVGElement("feDiffuseLighting")}}
  • +
  • {{SVGElement("feDisplacementMap")}}
  • +
  • {{SVGElement("feGaussianBlur")}}
  • +
  • {{SVGElement("feImage")}}
  • +
  • {{SVGElement("feMerge")}}
  • +
  • {{SVGElement("feMorphology")}}
  • +
  • {{SVGElement("feOffset")}}
  • +
  • {{SVGElement("feSpecularLighting")}}
  • +
  • {{SVGElement("feTile")}}
  • +
  • {{SVGElement("feTurbulence")}}
  • +
  • Tutoriel SVG: Les filtres
  • +
-- cgit v1.2.3-54-g00ecf