I'm working on the CSS3 3D features, but having some difficulties to set the elements order right. The code looks like this :
.item1 { z-index: 50; }
.item2 { z-index: 20; }
.container.open .item2 {
z-index: 100;
}
.container.open .item1 {
z-index: 10;
-webkit-transform: rotateY(-180deg), rotateZ(-180deg);
}
The .open classe is add to the container once the animation is lauched.
I want the .item1 element to move backward once the animation is fired. The new z-index is effectively set, but .item1 remains at the foreground.
Sorry that I have no demo to show, the css transforms arent recognized by jsfiddle.