diff options
author | Jb Audras <audrasjb@gmail.com> | 2021-07-28 09:31:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-28 09:31:42 +0200 |
commit | a16fe678ecc12c938edba78fecdf8be2be2af2f0 (patch) | |
tree | 9c49204a97997a8b9dac2430b52a4615fe55deb6 /files/fr/web | |
parent | 78845340c825b921d65ff3e2e8a1c8864e31fc83 (diff) | |
download | translated-content-a16fe678ecc12c938edba78fecdf8be2be2af2f0.tar.gz translated-content-a16fe678ecc12c938edba78fecdf8be2be2af2f0.tar.bz2 translated-content-a16fe678ecc12c938edba78fecdf8be2be2af2f0.zip |
French translation for the `path` CSS function reference (#1747)
* Original translation
* Replace <i> tags with <code>
* Add a missing <code> tag
Diffstat (limited to 'files/fr/web')
-rw-r--r-- | files/fr/web/css/path()/index.html | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/files/fr/web/css/path()/index.html b/files/fr/web/css/path()/index.html new file mode 100644 index 0000000000..2f6d56f241 --- /dev/null +++ b/files/fr/web/css/path()/index.html @@ -0,0 +1,61 @@ +--- +title: path() +slug: Web/CSS/path() +translation_of: 'Web/CSS/path()' +--- +<div>{{CSSRef}}</div> + +<p>La <a href="/fr/docs/Web/CSS/CSS_Functions">fonction</a> <a href="/fr/docs/Web/CSS">CSS</a> <code><strong>path()</strong></code> accepte comme paramètre une chaîne représentant un tracé SVG. Elle est utilisée dans les formes CSS et les animations de tracés CSS pour permettre de dessiner une forme.</p> + +<h2 id="syntax">Syntaxe</h2> + +<pre class="brush: css">path( [[<'fill-rule'>,]?<string>)</pre> + +<h3 id="parameters">Paramètres</h3> + +<dl> + <dt><code><'fill-rule'></code></dt> + <dd>La règle de remplissage de l'intérieur du tracé. Les valeurs possibles sont <code>nonzero</code> ou <code>evenodd</code>. La valeur par défaut est <code>nonzero</code>. Voir <a href="/fr/docs/Web/SVG/Attribute/fill-rule">fill-rule</a> pour plus de détails.</dd> + <dt><code><string></code></dt> + <dd>Doit être une <a href="/fr/docs/Web/SVG/Element/path">chaîne représentant les données d'un chemin SVG</a>.</dd> +</dl> + +<h2 id="examples">Exemples</h2> + +<h3 id="examples_of_correct_values_for_path">Exemples de valeurs correctes pour path()</h3> + +<pre class="brush: css">path("M 10 80 C 40 10, 65 10, 95 80 S 150 150, 180 80"); +path(evenodd,"M 10 80 C 40 10, 65 10, 95 80 S 150 150, 180 80"); +</pre> + +<h3 id="use_in_offset_path">Utilisation en tant que valeur de offset-path</h3> + +<p>La fonction <code>path()</code> est utilisée pour créer un tracé à suivre pour l'élément. La modification de l'une de ces valeurs conduira celui-ci à ne pas pouvoir suivre le tracé de façon nette lors de l'animation.</p> + +<p>{{EmbedGHLiveSample("css-examples/path/offset-path.html", '100%', 960)}}</p> + +<h2 id="specifications">Spécifications</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">Spécification</th> + <th scope="col">Statut</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{SpecName('CSS Shapes', '#funcdef-path', 'path()')}}</td> + <td>{{Spec2('CSS Shapes')}}</td> + </tr> + </tbody> +</table> + +<h2 id="see_also">Voir aussi</h2> + +<ul> + <li>{{cssxref("<shape-outside>")}}</li> + <li><a href="/fr/docs/Web/CSS/CSS_Shapes">Formes CSS</a></li> + <li><a href="/fr/docs/Web/CSS/CSS_Shapes/Overview_of_CSS_Shapes">Vue d'ensemble des formes CSS</a></li> + <li><a href="https://css-tricks.com/svg-path-syntax-illustrated-guide/"><i lang="en-US">SVG Path Syntax Illustrated Guide</i> (en anglais)</a></li> +</ul> |