CSS之后,RotateX可以';不要点击链接或输入

CSS之后,RotateX可以';不要点击链接或输入,css,angularjs,z-index,Css,Angularjs,Z Index,好吧,我对这个问题大发雷霆 起初我认为zindex是一团糟,但经过仔细研究后,它们看起来都很好,在firebug中将输入zindex更改为9999,但仍然没有任何结果,这是rotateX做的事情还是我的JavaScript。你的问题是当你将Z索引设置为-1时,它上的任何内容都变得不可选择。我将其更改为0,链接现在可以工作了 {LINE 73 style.css} /* -- general styles, including Y axis rotation -- */ .front {

好吧,我对这个问题大发雷霆


起初我认为zindex是一团糟,但经过仔细研究后,它们看起来都很好,在firebug中将输入zindex更改为9999,但仍然没有任何结果,这是rotateX做的事情还是我的JavaScript。

你的问题是当你将Z索引设置为-1时,它上的任何内容都变得不可选择。我将其更改为0,链接现在可以工作了

{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 is the magic sauce for animation -- */
        -o-transition: all .4s ease-in-out;
        -ms-transition: all .4s ease-in-out;
        -moz-transition: all .4s ease-in-out;
        -webkit-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
    }

那很容易。。。在我的头撞在墙上超过一天之后。。。。我不知道是这样的。。。。感谢…是的,我不久前也遇到过同样的问题,我有一个标签从另一个div下面滑出,所有链接都被禁用了。css有时会很奇怪