diff options
author | julieng <julien.gattelier@gmail.com> | 2021-11-01 07:51:27 +0100 |
---|---|---|
committer | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-11-07 11:57:29 +0100 |
commit | 7040e4bc9c98e0c50ce903a5cbeeabeda2ed908a (patch) | |
tree | 98beab4363e778deb9e251db56c2a5b1248f2697 /files/fr/web/svg/element/image/index.html | |
parent | c5054b32e0e496608030b5148ebba6d76db8ba7f (diff) | |
download | translated-content-7040e4bc9c98e0c50ce903a5cbeeabeda2ed908a.tar.gz translated-content-7040e4bc9c98e0c50ce903a5cbeeabeda2ed908a.tar.bz2 translated-content-7040e4bc9c98e0c50ce903a5cbeeabeda2ed908a.zip |
move *.html to *.md
Diffstat (limited to 'files/fr/web/svg/element/image/index.html')
-rw-r--r-- | files/fr/web/svg/element/image/index.html | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/files/fr/web/svg/element/image/index.html b/files/fr/web/svg/element/image/index.html deleted file mode 100644 index 24e230b8a4..0000000000 --- a/files/fr/web/svg/element/image/index.html +++ /dev/null @@ -1,60 +0,0 @@ ---- -title: <image> -slug: Web/SVG/Element/image -translation_of: Web/SVG/Element/image ---- -<div>{{SVGRef}}</div> - -<p>L'élément Image SVG (<image>) permet d'inclure une image matricielle dans un document SVG.</p> - -<h2 id="Contexte_dUtilisation">Contexte d'Utilisation</h2> - -<p>{{svginfo}}</p> - -<h2 id="Exemple">Exemple</h2> - -<p>Rendu basique d'une image PNG dans un objet SVG :</p> - -<pre class="brush: html"><svg width="100%" height="100%" viewBox="0 0 100 100" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink"> - <image xlink:href="/files/2917/fxlogo.png" x="0" y="0" height="100" width="100" /> -</svg> -</pre> - -<p>{{EmbedLiveSample("Exemple",250,260)}}</p> - -<h2 id="Attributs">Attributs</h2> - -<h3 id="Attributs_globaux">Attributs globaux</h3> - -<ul> - <li><a href="/fr/SVG/Attribute#ConditionalProccessing" title="en/SVG/Attribute#ConditionalProccessing">Attributs de traitement conditionnel</a> »</li> - <li><a href="/fr/SVG/Attribute#Core" title="en/SVG/Attribute#Core">Attributs noyau</a> »</li> - <li><a href="/fr/SVG/Attribute#GraphicalEvent" title="en/SVG/Attribute#GraphicalEvent">Attributs d'événement graphique</a> »</li> - <li><a href="/fr/SVG/Attribute#XLink" title="en/SVG/Attribute#XLink">Attributs Xlink</a> »</li> - <li><a href="/fr/SVG/Attribute#Presentation" title="en/SVG/Attribute#Presentation">Attributs de présentation</a> »</li> - <li>{{ SVGAttr("class") }}</li> - <li>{{ SVGAttr("style") }}</li> - <li>{{ SVGAttr("externalResourcesRequired") }}</li> - <li>{{ SVGAttr("transform") }}</li> -</ul> - -<h3 id="Attributs_spécifiques">Attributs spécifiques</h3> - -<ul> - <li>{{ SVGAttr("x") }}</li> - <li>{{ SVGAttr("y") }}</li> - <li>{{ SVGAttr("width") }}</li> - <li>{{ SVGAttr("height") }}</li> - <li>{{ SVGAttr("xlink:href") }}</li> - <li>{{ SVGAttr("preserveAspectRatio") }}</li> -</ul> - -<h2 id="Interface_DOM">Interface DOM</h2> - -<p>Cet élément implémente l'interface <code><a href="/fr/DOM/SVGImageElement" title="en/DOM/SVGImageElement">SVGImageElement</a></code>.</p> - -<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> - -<p>{{Compat("svg.elements.image")}}</p> |