aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/css/transform-function/rotatez()
diff options
context:
space:
mode:
authorSphinxKnight <SphinxKnight@users.noreply.github.com>2021-11-23 13:42:53 +0100
committerGitHub <noreply@github.com>2021-11-23 13:42:53 +0100
commitc64852bbea5da39e12f76775e8018b0a56142e03 (patch)
tree57b89a9fd18f7e7e682c638c80db2cf263f71307 /files/fr/web/css/transform-function/rotatez()
parent4ebead42b03a8b0846acba93ebbffc125cf6295e (diff)
downloadtranslated-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/rotatez()')
-rw-r--r--files/fr/web/css/transform-function/rotatez()/index.md50
1 files changed, 24 insertions, 26 deletions
diff --git a/files/fr/web/css/transform-function/rotatez()/index.md b/files/fr/web/css/transform-function/rotatez()/index.md
index 4588fec79b..c39015700b 100644
--- a/files/fr/web/css/transform-function/rotatez()/index.md
+++ b/files/fr/web/css/transform-function/rotatez()/index.md
@@ -1,12 +1,8 @@
---
title: rotateZ()
slug: Web/CSS/transform-function/rotateZ()
-tags:
- - CSS
- - Fonction
- - Reference
- - Transformations CSS
translation_of: Web/CSS/transform-function/rotateZ()
+browser-compat: css.types.transform-function.rotateZ
---
{{CSSRef}}
@@ -14,20 +10,24 @@ La fonction **`rotateZ()`** définit une transformation qui déplace l'élément
{{EmbedInteractiveExample("pages/css/function-rotateZ.html")}}
-L'axe de la rotation passe par l'origine du repère, définie par la propriété {{cssxref("transform-origin")}}.
+L'axe de la rotation passe par l'origine du repère, définie par la propriété [`transform-origin`](/fr/docs/Web/CSS/transform-origin).
`rotateZ(a)` est une notation raccourcie équivalente à `rotate3D(0, 0, 1, a)`.
-> **Note :** Contrairement aux rotations appliqués dans le plan, la composition de rotations dans l'espace n'est pas commutative. Autrement dit, l'ordre dans lequel on applique les rotations est déterminant.
+> **Note :** Contrairement aux rotations appliquées dans le plan, la composition de rotations dans l'espace n'est pas commutative. Autrement dit, l'ordre dans lequel on applique les rotations est déterminant.
## Syntaxe
- rotateZ(a)
+L'angle de la rotation appliquée par `rotateZ()` est fourni par une valeur [`<angle>`](/fr/docs/Web/CSS/angle). Si cette valeur est positive, la rotation s'effectuera dans le sens horaire&nbsp;; si elle est négative, la rotation s'effectuera dans le sens anti-horaire.
+
+```css
+rotateZ(a)
+```
### Valeurs
- `a`
- - : Une valeur de type {{cssxref("&lt;angle&gt;")}} qui représente l'angle de la rotation. Un angle positif indique une rotation appliquée dans le sens horaire, un angle négatif applique une rotation dans le sens anti-horaire.
+ - : Une valeur de type [`<angle>`](/fr/docs/Web/CSS/angle) qui représente l'angle de la rotation. Un angle positif indique une rotation appliquée dans le sens horaire, un angle négatif applique une rotation dans le sens anti-horaire.
<table class="standard-table">
<thead>
@@ -40,11 +40,11 @@ L'axe de la rotation passe par l'origine du repère, définie par la propriété
</thead>
<tbody>
<tr>
- <td colspan="2" rowspan="2">
+ <td colspan="2">
Cette transformation s'applique dans l'espace (3D) et ne peut pas être
représentée en deux dimensions.
</td>
- <td colspan="1" rowspan="2">
+ <td>
<math
><mfenced
><mtable
@@ -55,7 +55,7 @@ L'axe de la rotation passe par l'origine du repère, définie par la propriété
></math
>
</td>
- <td colspan="1" rowspan="2">
+ <td>
<math
><mfenced
><mtable
@@ -81,22 +81,22 @@ L'axe de la rotation passe par l'origine du repère, définie par la propriété
### HTML
```html
-<p>toto</p>
-<p class="transformation">truc</p>
+<div>Normal</div>
+<div class="rotated">Tourné</div>
```
### CSS
```css
-p {
- width: 50px;
- height: 50px;
- background-color: teal;
+div {
+ width: 80px;
+ height: 80px;
+ background-color: skyblue;
}
-.transformation {
+.rotated {
transform: rotateZ(45deg);
- background-color: blue;
+ background-color: pink;
}
```
@@ -106,15 +106,13 @@ p {
## Spécifications
-| Spécification | État | Commentaires |
-| ---------------------------------------------------------------------------------------- | ---------------------------------------- | -------------------- |
-| {{SpecName("CSS Transforms 2", "#funcdef-rotatez", "rotateZ()")}} | {{Spec2("CSS Transforms 2")}} | 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("&lt;transform-function&gt;")}}
+- [`transform`](/fr/docs/Web/CSS/transform)
+- [`<transform-function>`](/fr/docs/Web/CSS/transform-function)