aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/svg/attribute/cy
diff options
context:
space:
mode:
authorjulieng <julien.gattelier@gmail.com>2021-11-01 07:51:45 +0100
committerSphinxKnight <SphinxKnight@users.noreply.github.com>2021-11-07 11:57:29 +0100
commit88dda3c00eefc18a29447e99ebd3177925602b52 (patch)
treea184ddfe3825b6f05cba6d7586ea05c9375558a0 /files/fr/web/svg/attribute/cy
parent7040e4bc9c98e0c50ce903a5cbeeabeda2ed908a (diff)
downloadtranslated-content-88dda3c00eefc18a29447e99ebd3177925602b52.tar.gz
translated-content-88dda3c00eefc18a29447e99ebd3177925602b52.tar.bz2
translated-content-88dda3c00eefc18a29447e99ebd3177925602b52.zip
convert content to md
Diffstat (limited to 'files/fr/web/svg/attribute/cy')
-rw-r--r--files/fr/web/svg/attribute/cy/index.md277
1 files changed, 138 insertions, 139 deletions
diff --git a/files/fr/web/svg/attribute/cy/index.md b/files/fr/web/svg/attribute/cy/index.md
index 24ec4c6c58..b230dfd661 100644
--- a/files/fr/web/svg/attribute/cy/index.md
+++ b/files/fr/web/svg/attribute/cy/index.md
@@ -6,167 +6,166 @@ tags:
- SVG Attribute
translation_of: Web/SVG/Attribute/cy
---
-<div>{{SVGRef}}</div>
+{{SVGRef}}
-<p>L'attribut <strong><code>cy</code></strong> définit la coordonnée de l'axe y pour le point central d'un élément.</p>
+L'attribut **`cy`** définit la coordonnée de l'axe y pour le point central d'un élément.
-<p>Trois éléments utilisent cet attribut: {{SVGElement("circle")}}, {{SVGElement("ellipse")}}, et {{SVGElement("radialGradient")}}</p>
+Trois éléments utilisent cet attribut: {{SVGElement("circle")}}, {{SVGElement("ellipse")}}, et {{SVGElement("radialGradient")}}
-<h2>Exemple</h2>
+## Exemple
-<pre class="brush: css hidden">html,body,svg { height:100% }</pre>
+```css hidden
+html,body,svg { height:100% }
+```
-<pre class="brush: html">&lt;svg viewBox="0 0 100 300" xmlns="http://www.w3.org/2000/svg"&gt;
- &lt;radialGradient cy="25%" id="myGradient"&gt;
- &lt;stop offset="0" stop-color="white" /&gt;
- &lt;stop offset="100%" stop-color="black" /&gt;
- &lt;/radialGradient&gt;
+```html
+<svg viewBox="0 0 100 300" xmlns="http://www.w3.org/2000/svg">
+ <radialGradient cy="25%" id="myGradient">
+ <stop offset="0" stop-color="white" />
+ <stop offset="100%" stop-color="black" />
+ </radialGradient>
- &lt;circle cy="50" cx="50" r="45"/&gt;
- &lt;ellipse cy="150" cx="50" rx="45" ry="25" /&gt;
- &lt;rect x="5" y="205" width="90" height="90" fill="url(#myGradient)" /&gt;
-&lt;/svg&gt;</pre>
+ <circle cy="50" cx="50" r="45"/>
+ <ellipse cy="150" cx="50" rx="45" ry="25" />
+ <rect x="5" y="205" width="90" height="90" fill="url(#myGradient)" />
+</svg>
+```
-<p>{{EmbedLiveSample('exemple', '100%', 300)}}</p>
+{{EmbedLiveSample('exemple', '100%', 300)}}
-<h2 id="circle">circle</h2>
+## circle
-<p>Pour un élément {{SVGElement('circle')}}, <code>cy</code> définit la coordonnée y de son centre.</p>
+Pour un élément {{SVGElement('circle')}}, `cy` définit la coordonnée y de son centre.
<table class="standard-table">
- <tbody>
- <tr>
- <th scope="row">Valeur</th>
- <td><strong><a href="/docs/Web/SVG/Content_type#Length">&lt;length&gt;</a></strong> | <strong><a href="/docs/Web/SVG/Content_type#Percentage">&lt;percentage&gt;</a></strong></td>
- </tr>
- <tr>
- <th scope="row">Valeur par défaut</th>
- <td><code>0</code></td>
- </tr>
- <tr>
- <th scope="row">Animation</th>
- <td>Oui</td>
- </tr>
- </tbody>
+ <tbody>
+ <tr>
+ <th scope="row">Valeur</th>
+ <td>
+ <strong
+ ><a href="/docs/Web/SVG/Content_type#Length">&#x3C;length></a></strong
+ >
+ |
+ <strong
+ ><a href="/docs/Web/SVG/Content_type#Percentage"
+ >&#x3C;percentage></a
+ ></strong
+ >
+ </td>
+ </tr>
+ <tr>
+ <th scope="row">Valeur par défaut</th>
+ <td><code>0</code></td>
+ </tr>
+ <tr>
+ <th scope="row">Animation</th>
+ <td>Oui</td>
+ </tr>
+ </tbody>
</table>
-<div class="note">
- <p><strong>Note:</strong> À partir de SVG2, <code>cy</code> est une<em> propriété de géométrie</em>, ce qui signifie que cet attribut peut être utilisé comme propriété CSS pour les cercles.</p>
-</div>
+> **Note :** À partir de SVG2, `cy` est une _propriété de géométrie_, ce qui signifie que cet attribut peut être utilisé comme propriété CSS pour les cercles.
-<h2 id="ellipse">ellipse</h2>
+## ellipse
-<p>Pour un élément {{SVGElement('ellipse')}}, <code>cy</code> définit la coordonnée y de son centre.</p>
+Pour un élément {{SVGElement('ellipse')}}, `cy` définit la coordonnée y de son centre.
<table class="standard-table">
- <tbody>
- <tr>
- <th scope="row">Valeur</th>
- <td><strong><a href="/docs/Web/SVG/Content_type#Length">&lt;length&gt;</a></strong> | <strong><a href="/docs/Web/SVG/Content_type#Percentage">&lt;percentage&gt;</a></strong></td>
- </tr>
- <tr>
- <th scope="row">Valeur par défaut</th>
- <td><code>0</code></td>
- </tr>
- <tr>
- <th scope="row">Animation</th>
- <td>Oui</td>
- </tr>
- </tbody>
+ <tbody>
+ <tr>
+ <th scope="row">Valeur</th>
+ <td>
+ <strong
+ ><a href="/docs/Web/SVG/Content_type#Length">&#x3C;length></a></strong
+ >
+ |
+ <strong
+ ><a href="/docs/Web/SVG/Content_type#Percentage"
+ >&#x3C;percentage></a
+ ></strong
+ >
+ </td>
+ </tr>
+ <tr>
+ <th scope="row">Valeur par défaut</th>
+ <td><code>0</code></td>
+ </tr>
+ <tr>
+ <th scope="row">Animation</th>
+ <td>Oui</td>
+ </tr>
+ </tbody>
</table>
-<div class="note">
- <p><strong>Note :</strong> À partir de SVG2, <code>cy</code> est une<em> propriété de géométrie</em>, ce qui signifie que cet attribut peut être utilisé comme propriété CSS pour les ellipses.</p>
-</div>
+> **Note :** À partir de SVG2, `cy` est une _propriété de géométrie_, ce qui signifie que cet attribut peut être utilisé comme propriété CSS pour les ellipses.
-<h2 id="radialGradient">radialGradient</h2>
+## radialGradient
-<p>Pour un élément {{SVGElement('radialGradient')}}, <code>cy</code> définit la coordonnées x du plus grand cercle pour le dégradé radial (c'est-à-dire du plus externe). Le dégradé sera dessiné de telle façon que la <a href="/fr/docs/SVG/Element/stop" title="/en-US/docs/SVG/Element/stop">limite de dégradé</a> de <strong>100%</strong> corresponde au périmètre de ce plus grand cercle.</p>
+Pour un élément {{SVGElement('radialGradient')}}, `cy` définit la coordonnées x du plus grand cercle pour le dégradé radial (c'est-à-dire du plus externe). Le dégradé sera dessiné de telle façon que la [limite de dégradé](/fr/docs/SVG/Element/stop "/en-US/docs/SVG/Element/stop") de **100%** corresponde au périmètre de ce plus grand cercle.
<table class="standard-table">
- <tbody>
- <tr>
- <th scope="row">Valeur</th>
- <td><strong><a href="/docs/Web/SVG/Content_type#Length">&lt;length&gt;</a></strong></td>
- </tr>
- <tr>
- <th scope="row">Valeur par défaut</th>
- <td><code>50%</code></td>
- </tr>
- <tr>
- <th scope="row">Animation</th>
- <td>Oui</td>
- </tr>
- </tbody>
+ <tbody>
+ <tr>
+ <th scope="row">Valeur</th>
+ <td>
+ <strong
+ ><a href="/docs/Web/SVG/Content_type#Length">&#x3C;length></a></strong
+ >
+ </td>
+ </tr>
+ <tr>
+ <th scope="row">Valeur par défaut</th>
+ <td><code>50%</code></td>
+ </tr>
+ <tr>
+ <th scope="row">Animation</th>
+ <td>Oui</td>
+ </tr>
+ </tbody>
</table>
-<h4 id="autre_exemple">Autre exemple</h4>
-
-<pre class="brush: css hidden">html,body,svg { height:100% }</pre>
-
-<pre class="brush: html">&lt;svg viewBox="0 0 34 10" xmlns="http://www.w3.org/2000/svg"&gt;
- &lt;defs&gt;
- &lt;radialGradient cy="0" id="myGradient000"&gt;
- &lt;stop offset="0%" stop-color="gold" /&gt;
- &lt;stop offset="50%" stop-color="green" /&gt;
- &lt;stop offset="100%" stop-color="white" /&gt;
- &lt;/radialGradient&gt;
-
- &lt;radialGradient cy="50%" id="myGradient050"&gt;
- &lt;stop offset="0%" stop-color="gold" /&gt;
- &lt;stop offset="50%" stop-color="green" /&gt;
- &lt;stop offset="100%" stop-color="white" /&gt;
- &lt;/radialGradient&gt;
-
- &lt;radialGradient cy="100%" id="myGradient100"&gt;
- &lt;stop offset="0%" stop-color="gold" /&gt;
- &lt;stop offset="50%" stop-color="green" /&gt;
- &lt;stop offset="100%" stop-color="white" /&gt;
- &lt;/radialGradient&gt;
- &lt;/defs&gt;
-
- &lt;rect x="1" y="1" width="8" height="8" fill="url(#myGradient000)" stroke="black" /&gt;
- &lt;rect x="13" y="1" width="8" height="8" fill="url(#myGradient050)" stroke="black" /&gt;
- &lt;rect x="25" y="1" width="8" height="8" fill="url(#myGradient100)" stroke="black" /&gt;
-&lt;/svg&gt;</pre>
-
-<p>{{EmbedLiveSample('radialGradient', 150, '100%')}}</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", "geometry.html#CY", "cy")}}</td>
- <td>{{Spec2("SVG2")}}</td>
- <td>Définition comme propriété de géométrie</td>
- </tr>
- <tr>
- <td>{{SpecName("SVG2", "pservers.html#RadialGradientElementCYAttribute", "cy")}}</td>
- <td>{{Spec2("SVG2")}}</td>
- <td>Définition pour SVG2</td>
- </tr>
- <tr>
- <td>{{SpecName("SVG1.1", "pservers.html#RadialGradientElementCYAttribute", "cy")}}</td>
- <td>{{Spec2("SVG1.1")}}</td>
- <td>Définition initiale pour <code>&lt;radialGradient&gt;</code></td>
- </tr>
- <tr>
- <td>{{SpecName("SVG1.1", "shapes.html#EllipseElementCYAttribute", "cy")}}</td>
- <td>{{Spec2("SVG1.1")}}</td>
- <td>Définition initiale pour <code>&lt;ellipse&gt;</code></td>
- </tr>
- <tr>
- <td>{{SpecName("SVG1.1", "shapes.html#CircleElementCYAttribute", "cy")}}</td>
- <td>{{Spec2("SVG1.1")}}</td>
- <td>Définition initiale pour <code>&lt;circle&gt;</code></td>
- </tr>
- </tbody>
-</table>
+#### Autre exemple
+
+```css hidden
+html,body,svg { height:100% }
+```
+
+```html
+<svg viewBox="0 0 34 10" xmlns="http://www.w3.org/2000/svg">
+ <defs>
+ <radialGradient cy="0" id="myGradient000">
+ <stop offset="0%" stop-color="gold" />
+ <stop offset="50%" stop-color="green" />
+ <stop offset="100%" stop-color="white" />
+ </radialGradient>
+
+ <radialGradient cy="50%" id="myGradient050">
+ <stop offset="0%" stop-color="gold" />
+ <stop offset="50%" stop-color="green" />
+ <stop offset="100%" stop-color="white" />
+ </radialGradient>
+
+ <radialGradient cy="100%" id="myGradient100">
+ <stop offset="0%" stop-color="gold" />
+ <stop offset="50%" stop-color="green" />
+ <stop offset="100%" stop-color="white" />
+ </radialGradient>
+ </defs>
+
+ <rect x="1" y="1" width="8" height="8" fill="url(#myGradient000)" stroke="black" />
+ <rect x="13" y="1" width="8" height="8" fill="url(#myGradient050)" stroke="black" />
+ <rect x="25" y="1" width="8" height="8" fill="url(#myGradient100)" stroke="black" />
+</svg>
+```
+
+{{EmbedLiveSample('radialGradient', 150, '100%')}}
+
+## Spécifications
+
+| Spécification | Statut | Commentaire |
+| -------------------------------------------------------------------------------------------------------- | ------------------------ | ------------------------------------------- |
+| {{SpecName("SVG2", "geometry.html#CY", "cy")}} | {{Spec2("SVG2")}} | Définition comme propriété de géométrie |
+| {{SpecName("SVG2", "pservers.html#RadialGradientElementCYAttribute", "cy")}} | {{Spec2("SVG2")}} | Définition pour SVG2 |
+| {{SpecName("SVG1.1", "pservers.html#RadialGradientElementCYAttribute", "cy")}} | {{Spec2("SVG1.1")}} | Définition initiale pour `<radialGradient>` |
+| {{SpecName("SVG1.1", "shapes.html#EllipseElementCYAttribute", "cy")}} | {{Spec2("SVG1.1")}} | Définition initiale pour `<ellipse>` |
+| {{SpecName("SVG1.1", "shapes.html#CircleElementCYAttribute", "cy")}} | {{Spec2("SVG1.1")}} | Définition initiale pour `<circle>` |