diff -r f76d49b98a1c css3-transforms/Transforms.src.html
--- a/css3-transforms/Transforms.src.html Tue Mar 13 11:19:47 2012 -0700
+++ b/css3-transforms/Transforms.src.html Tue Mar 13 11:39:25 2012 -0700
@@ -1626,22 +1626,16 @@
would cause elements to appear rotated one-quarter of a turn in the clockwise direction.
- skew(<angle>[, <angle>])
-
-
- specifies a 2D skew by [ax,ay] for X and Y. If the second parameter is not provided, it is has a zero value.
-
-
skewX(<angle>)
- specifies a 2D skew transformation along the X axis by the given angle. The skew vector is [ax,0].
+ specifies a 2D skew transformation along the X axis by the given angle.
skewY(<angle>)
- specifies a 2D skew transformation along the Y axis by the given angle. The skew vector is [0,ay].
+ specifies a 2D skew transformation along the Y axis by the given angle.
@@ -1772,7 +1766,7 @@
-
For translate, translate3d, translateX, translateY, translateZ, scale,
- scale3d, scaleX, scaleY, scaleZ, rotate, rotateX, rotateY, rotateZ, skew, skewX
+ scale3d, scaleX, scaleY, scaleZ, rotate, rotateX, rotateY, rotateZ, skewX
and skewY functions:
-
@@ -1823,7 +1817,7 @@
The identity functions are translate(0), translate3d(0, 0, 0),
translateX(0), translateY(0), translateZ(0), scale(1), scale3d(1, 1, 1),
scaleX(1), scaleY(1), scaleZ(1), rotate(0), rotate3d(1, 1, 1, 0),
- rotateX(0), rotateY(0), rotateZ(0), skew(0), skewX(0), skewY(0),
+ rotateX(0), rotateY(0), rotateZ(0), skewX(0), skewY(0),
matrix(1, 0, 0, 1, 0, 0) and
matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1).
@@ -2067,11 +2061,17 @@
with vector [0,0,1] and parameter alpha.
- -
+
-
- A 2D skew transformation with the parameters alpha and beta is equivalent to the matrix:
+ A 2D skew transformation along the X axis with the parameter alpha is equivalent to the matrix:
-
+
+
+ -
+
+ A 2D skew transformation along the Y axis with the parameter beta is equivalent to the matrix:
+
+
-
diff -r f76d49b98a1c css3-transforms/skew.png
Binary file css3-transforms/skew.png has changed
diff -r f76d49b98a1c css3-transforms/skewX.png
Binary file css3-transforms/skewX.png has changed
diff -r f76d49b98a1c css3-transforms/skewY.png
Binary file css3-transforms/skewY.png has changed