css3 - After CSS RotateX can't click on links or inputs -
alright, i've made plunker problem. http://plnkr.co/edit/cukolk
at first though zindex messed after going through , looking @ them seem fine, changed input zindex 9999 in firebug , still nothing, rotatex or javascript.
your problem when set z-index -1 on becomes unselectable. changed 0 , links work!
{line 73 style.css}
/* -- general styles, including y axis rotation -- */ .front { z-index: 0; width: inherit; height: inherit; -webkit-transform: rotatex(0deg) rotatey(0deg); -webkit-transform-style: preserve-3d; -webkit-backface-visibility: hidden; -moz-transform: rotatex(0deg) rotatey(0deg); -moz-transform-style: preserve-3d; -moz-backface-visibility: hidden; /* -- transition magic sauce animation -- */ -o-transition: .4s ease-in-out; -ms-transition: .4s ease-in-out; -moz-transition: .4s ease-in-out; -webkit-transition: .4s ease-in-out; transition: .4s ease-in-out; }
Comments
Post a Comment