Skip to content
This repository has been archived by the owner on May 17, 2021. It is now read-only.

transform cases z-index issues #34

Open
oojacoboo opened this issue Feb 3, 2014 · 1 comment
Open

transform cases z-index issues #34

oojacoboo opened this issue Feb 3, 2014 · 1 comment

Comments

@oojacoboo
Copy link

Check the following SO post for more information. Flippy is affected by this bug/rendering particular.

http://stackoverflow.com/questions/5472802/css-z-index-lost-after-webkit-transform-translate3d

The quickest fix is to restore transform: none; upon the completion of the transition. Thanks!

@oojacoboo
Copy link
Author

The fix is to apply

/*parent container*/
-webkit-perspective: none;
-moz-perspective: none;
-ms-perspective: none;
perspective: none;

/*element being flipped*/
-webkit-transform: none;
-moz-transform: none;
-ms-transform: none;
transform: none;

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant