diff options
| author | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-11-23 13:42:53 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-23 13:42:53 +0100 |
| commit | c64852bbea5da39e12f76775e8018b0a56142e03 (patch) | |
| tree | 57b89a9fd18f7e7e682c638c80db2cf263f71307 /files/fr/web/css/transform-function/skewx() | |
| parent | 4ebead42b03a8b0846acba93ebbffc125cf6295e (diff) | |
| download | translated-content-c64852bbea5da39e12f76775e8018b0a56142e03.tar.gz translated-content-c64852bbea5da39e12f76775e8018b0a56142e03.tar.bz2 translated-content-c64852bbea5da39e12f76775e8018b0a56142e03.zip | |
Fixes #2805 - update of transform-function pages (#2834)
* fixes #2805, updating scale() vs en-US w/ a few typos
* missing typos
* Update transform-function pages as well: rm cssxref, add compat frontmatter and spec/bcd macros
Diffstat (limited to 'files/fr/web/css/transform-function/skewx()')
| -rw-r--r-- | files/fr/web/css/transform-function/skewx()/index.md | 42 |
1 files changed, 19 insertions, 23 deletions
diff --git a/files/fr/web/css/transform-function/skewx()/index.md b/files/fr/web/css/transform-function/skewx()/index.md index a82f7c2a1c..e56061b928 100644 --- a/files/fr/web/css/transform-function/skewx()/index.md +++ b/files/fr/web/css/transform-function/skewx()/index.md @@ -1,12 +1,8 @@ --- title: skewX() slug: Web/CSS/transform-function/skewX() -tags: - - CSS - - Fonction - - Reference - - Transformations CSS translation_of: Web/CSS/transform-function/skewX() +browser-compat: css.types.transform-function.skewX --- {{CSSRef}} @@ -14,18 +10,20 @@ La fonction **`skewX()`** permet d'opérer une distorsion horizontale en étiran {{EmbedInteractiveExample("pages/css/function-skewX.html")}} -La valeur obtenue par cette fonction est de type {{cssxref("<transform-function>")}}. +La valeur obtenue par cette fonction est de type [`<transform-function>`](/fr/docs/Web/CSS/transform-function). `skewX(a)` est équivalent à [`skew(a)`](</fr/docs/Web/CSS/transform-function/skew()>). ## Syntaxe - skewX(a) +```css +skewX(a) +``` ### Valeurs - `a` - - : Une valeur de type {{cssxref("<angle>")}} qui représente l'angle avec lequel appliquer la distorsion selon l'axe des abscisses (axe horizontal). + - : Une valeur de type [`<angle>`](/fr/docs/Web/CSS/angle) qui représente l'angle avec lequel appliquer la distorsion selon l'axe des abscisses (axe horizontal). <table class="standard-table"> <thead> @@ -96,22 +94,22 @@ La valeur obtenue par cette fonction est de type {{cssxref("<transform-functi ### HTML ```html -<p>toto</p> -<p class="transformation">truc</p> +<div>Normal</div> +<div class="skewed">Distordu</div> ``` ### CSS ```css -p { - width: 50px; - height: 50px; - background-color: teal; +div { + width: 80px; + height: 80px; + background-color: skyblue; } -.transformation { - transform: skewX(10deg); - background-color: blue; +.skewed { + transform: skewX(10deg); /* Équivalent à skew(10deg) */ + background-color: pink; } ``` @@ -121,15 +119,13 @@ p { ## Spécifications -| Spécification | État | Commentaires | -| -------------------------------------------------------------------------------------------- | ------------------------------------ | -------------------- | -| {{SpecName("CSS3 Transforms", "#funcdef-transform-skewx", "skewX()")}} | {{Spec2("CSS3 Transforms")}} | Définition initiale. | +{{Specifications}} ## Compatibilité des navigateurs -Voir la page sur le type de donnée [`<transform-function>`](/fr/docs/Web/CSS/transform-function#compatibilité_des_navigateurs) pour les informations de compatibilité associées. +{{Compat}} ## Voir aussi -- {{cssxref("transform")}} -- {{cssxref("<transform-function>")}} +- [`transform`](/fr/docs/Web/CSS/transform) +- [`<transform-function>`](/fr/docs/Web/CSS/transform-function) |
