I’m trying to wrap my tiny brain around 3D CSS transforms, and I‘m having trouble understanding what the scaleZ()
function is for.
scale()
, scaleX()
and scaleY()
make sense: they stretch the element along the axis specified, multiplying its dimension along that axis by the number you provide.
But scaleZ()
seems different:
- It applies to children of the element
- It doesn’t affect the dimensions of the child elements, as HTML elements don’t have any dimension along the z-axis (i.e. you can’t make a
<div>
“thicker”).
[
scaleZ()
] affects the scaling along the z axis in transformed children.
I can’t figure out what this actually means in practice. Could anyone supply an explanation, preferably with some example code?
I was confused about this for a long time although having experimented, I believe it's quite easy to understand:
Assume an element is positioned 100px on the Z axis, making it move toward the viewer, like so:
And you then scale the Z axis by two:
Its dimensions aren't affected as you say, but it will now be the same size as if it were
translateZ(200px)
.scaleZ(2) translateZ(400px)
is the equivalent oftranslateZ(800px)
and so on.You can see a demonstration of this on JSFiddle.
Don't think of
scaleZ()
affecting the element but instead the Z axis which the element is on.One final note: a browser should treat multiple transform functions as if they are being applied separately, which means their order is important. For
scaleZ()
to work, it must be placed beforetranslateZ()
, else you're just moving the element on the Z axis and then scaling the axis without any visual result.Seems silly to answer a question two years after it was asked, but posting it for posterity.
It has to do with transform matrices and matrix-vector multiplication. Basically, the transform won't appear to work unless the math works out to produce a product where the Z coordinate is greater than zero.
This is easy to explain, but a little bit hard to understand if you don't have the math background. (But a weekend's worth of WikiPedia reading and Google searches will teach you enough. That's how I learned it.) Every transform function, except matrix() and matrix3d() have an equivalent matrix value. For scale3d, the matrix is:
Where sx, sy, and sz are the factor for scaling about the x, y, and z axes. For scaleZ, it's the same, but sx and sy are both 1.
When you apply a transform, the browser takes the coordinates for each vertex of the object (in non-nerd speak: takes the coordinates for each box corner) and multiplies it by the transform matrix. The product of this becomes the new coordinates for the object. For example the math of
transform: scaleZ(3)
on an object starting at (100,50,0) looks a little like this:That product, [100 50 0 1] when translated into a 3D coordinate system becomes what we started with: (100,50,0). The result is that it looks like the transform wasn't applied. In order for a transform using scaleZ() to have an effect, the third number in the product of the matrix and vector must be greater than zero. It usually happens when scaleZ() or scale3d() are applied to the parent element, or used in combination with another transform function. In both cases cumulative/current transform matrix results in a Z coordinate whose value is greater than zero. Here's an example using
transform: rotateY(30deg) scaleZ(3)
. First we need to multiply the matrix forrotateY(30deg)
by the matrix forscaleZ(3)
.Then we can multiply our matrix product (that bit to the right of the equal sign) by our point at (100,50,0).
Our product [86.6 50 49.9 1] works out to coordinates of (87, 50, 50) if we round off to whole numbers. And that second 50 is our Z coordinate. The transform has a noticeable effect.
Apple’s Safari CSS Visual Effects Guide explains
scaleZ()
like this:So, as I understand it, when:
scaleZ()
applied to itthen when descendants of the inner layer have 3D transforms applied to them, their movement along the z-axis will be multiplied by the value you passed to
scaleZ()
. Or something.I’ve popped up an example on JSFiddle. If you remove
-webkit-transform: scaleZ(3);
, then the blue box fits inside the grey box, because it doesn’t move so much along the z-axis. (I think.)there are
three views
in over webpageX, Y & Z
like for examplez-index
as it's same thing thescaleZ()
.Check what w3c say
check your link animation http://www.webkit.org/blog-files/3d-transforms/morphing-cubes.html
EDIT:
your fiddle still not explain what is
scaleZ()
because we can get that effect fromscaleY()
also.Check this fiddle http://jsfiddle.net/sandeep/dppNn/
Now in my fiddle example you can the
3rd digit box
look like3D means
withscaleX(),scaleY() & scaleZ()
&2nd digit box
look like 2D because they scale only scaleX() & scaleY().