I'm attempting a CSS3 animation effect using a 3D transformation/transition. I have an HTML container, which is effectively divided up into "tiles" with another layer that sits on top. What I'd like to do is create a "flip" effect on individual tiles.
Like this, except where one of the layers is plain HTML (eg, text).
.sub {
-webkit-transition: -webkit-transform 0.6s linear;
}
.flip {
-webkit-transform: rotate3d(1,0,0,90deg);
}
After pondering this for a while, I'm not sure it's even possible. Here's what I attempted.
- Container with some text as the back layer.
- Layer tiles on top; set one tile's opacity to zero, creating a "window".
- Now apply the transformation to the back layer.
- Add a third layer on top, that is the same as the first layer.
This almost works, but not really; the "window" flips as it should, but of course the top layer is still visible over the window, ruining the effect.
Is there any way to accomplish this partial-flip effect?