« Le langage CSS/Transformation géométrique » : différence entre les versions

Contenu supprimé Contenu ajouté
WL:RD : Initialisation de la page
 
Aucun résumé des modifications
Ligne 19 :
;scale(''sx''):Modifie l'échelle horizontale.
;scale(''sx'', ''sy''):Modifie l'échelle horizontale et verticale<ref>https://developer.mozilla.org/fr/docs/Web/CSS/transform-function/scale</ref>.
;matrice(''a'', ''b'', ''c'', ''d'', ''tx'', ''ty''):Définit une matrice de transformation géométrique 2D<ref>https://developer.mozilla.org/fr/docs/Web/CSS/transform-function/matrix</ref>.
:<code>matrix(''a'', ''b'', ''c'', ''d'', ''tx'', ''ty'')</code> est une notation raccourcie, équivalente à <code>matrix3d(''a'', ''b'', 0, 0, ''c'', ''d'', 0, 0, 0, 0, 1, 0, ''tx'', ''ty'', 0, 1)</code>.
:Voir la section [[#Représentation matricielle|Représentation matricielle]] ci-dessous.
;matrice3d(''a1'', ''b1'', ''c1'', ''d1'', ''a2'', ''b2'', ''c2'', ''d2'', ''a3'', ''b3'', ''c3'', ''d3'', ''a4'', ''b4'', ''c4'', ''d4''):Définit une matrice de transformation géométrique 3D<ref>https://developer.mozilla.org/fr/docs/Web/CSS/transform-function/matrix3d</ref>.
:Voir la section [[#Représentation matricielle|Représentation matricielle]] ci-dessous.
 
=== Exemple 1 ===
Ligne 57 ⟶ 62 :
 
== Représentation matricielle ==
 
== Références ==
{{Références}}