2013-10-07 25 views

回答

2

你的问题是当你设置一个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; 
    } 
+0

嗯,这很容易......过了一天敲我的头在墙上的后....我不知道是这样的话... 。欣赏它... –

+0

是啊,我有同一问题前一段时间,我有一个标签,从另一个div下滑出,所有链接都被禁用。有时候CSS会很奇怪 –