aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/css/path()
diff options
context:
space:
mode:
authorMDN <actions@users.noreply.github.com>2022-03-19 00:13:08 +0000
committerMDN <actions@users.noreply.github.com>2022-03-19 00:13:08 +0000
commit9bf6693b2edd5281c1577856895c55653a41dc01 (patch)
tree0143e1d1d5c95776e42d8d9afdddedb13a0827c1 /files/fr/web/css/path()
parent376471eb81e0a3dc263128f834e3c8c22bb9b4d6 (diff)
downloadtranslated-content-9bf6693b2edd5281c1577856895c55653a41dc01.tar.gz
translated-content-9bf6693b2edd5281c1577856895c55653a41dc01.tar.bz2
translated-content-9bf6693b2edd5281c1577856895c55653a41dc01.zip
[CRON] sync translated content
Diffstat (limited to 'files/fr/web/css/path()')
-rw-r--r--files/fr/web/css/path()/index.md51
1 files changed, 0 insertions, 51 deletions
diff --git a/files/fr/web/css/path()/index.md b/files/fr/web/css/path()/index.md
deleted file mode 100644
index fb6b5f61a6..0000000000
--- a/files/fr/web/css/path()/index.md
+++ /dev/null
@@ -1,51 +0,0 @@
----
-title: path()
-slug: Web/CSS/path()
-translation_of: Web/CSS/path()
----
-{{CSSRef}}
-
-La [fonction](/fr/docs/Web/CSS/CSS_Functions) [CSS](/fr/docs/Web/CSS) **`path()`** 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.
-
-## Syntaxe
-
-```css
-path( [[<'fill-rule'>,]?<string>)
-```
-
-### Paramètres
-
-- `<'fill-rule'>`
- - : La règle de remplissage de l'intérieur du tracé. Les valeurs possibles sont `nonzero` ou `evenodd`. La valeur par défaut est `nonzero`. Voir [fill-rule](/fr/docs/Web/SVG/Attribute/fill-rule) pour plus de détails.
-- `<string>`
- - : Doit être une [chaîne représentant les données d'un chemin SVG](/fr/docs/Web/SVG/Element/path).
-
-## Exemples
-
-### Exemples de valeurs correctes pour path()
-
-```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");
-```
-
-### Utilisation en tant que valeur de offset-path
-
-La fonction `path()` 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.
-
-{{EmbedGHLiveSample("css-examples/path/offset-path.html", '100%', 960)}}
-
-## Spécifications
-
-| Spécification | Statut |
-| ------------------------------------------------------------------------ | -------------------------------- |
-| {{SpecName('CSS Shapes', '#funcdef-path', 'path()')}} | {{Spec2('CSS Shapes')}} |
-
-## Voir aussi
-
-- {{cssxref("&lt;shape-outside&gt;")}}
-- [Formes CSS](/fr/docs/Web/CSS/CSS_Shapes)
-- [Vue d'ensemble des formes CSS](/fr/docs/Web/CSS/CSS_Shapes/Overview_of_CSS_Shapes)
-- <i lang="en">SVG Path Syntax Illustrated Guide</i>
-
- [<i lang="en">SVG Path Syntax Illustrated Guide</i> (en anglais)](https://css-tricks.com/svg-path-syntax-illustrated-guide/)