不工作我有一個jQuery圖片滾動模擬使用perpective
和transform: translateZ
CSS屬性的深度。它在Chrome中正確呈現,但不在IE10或Firefox中呈現。CSS觀點在Internet Explorer 10或Firefox
這裏是整個項目(「誰是未來」菜單中點擊鏈接查看的圖片滾動): http://www.girlguiding.org.uk/test/biggig/index.html ,這裏是一個的jsfiddle的相關代碼: http://jsfiddle.net/moosefetcher/rxCMr/28/ (我不知道爲什麼,但計算器告訴我,我需要包括代碼鏈接到的jsfiddle,所以這裏的CSS)...
.scroller {
position: relative;
perspective: 150;
-webkit-perspective: 150;
-ms-perspective: 150;
-moz-perspective: 150;
}
.artistBox {
width: 228px;
height: 268px;
background-color: #000000;
border-radius: 16px;
position: absolute;
overflow: hidden;
z-index: 4;
}
.artistBox p {
position: absolute;
font-family:"Arial", sans-serif;
color: white;
font-size: 22px;
}
.artistBoxFront {
z-index: 5;
}
.artistBoxNew {
z-index: 3;
opacity: 0;
}
.scrollerButton {
position: absolute;
top: 128px;
width: 32px;
height: 32px;
border: 2px solid white;
border-radius: 32px;
background-color: #F49D19;
box-shadow: 1px 1px 3px #555588;
z-index: 6;
}
.scrollerButtonOver {
background-color: #ffaa26;
box-shadow: 2px 2px 3px #555588;
}
請注意,我已經試過這既包括和不包括對性能-ms-
前綴。 (當前的jsfiddle包括,以及-webkit-
和-moz-
)。 任何人都知道爲什麼這可能不適用於IE10? 乾杯。
不知道這是否算作'凹凸',但我剛剛發現IE10在開發人員工具的'怪癖'模式選項中正確呈現上述3D。任何人都知道這可能是爲什麼?如果這是一個有用的啓示呢? – moosefetcher 2013-04-10 11:43:34
怪癖模式下的IE10不符合標準。它可能允許長度值沒有所需的長度單位(並且默認情況下假設爲「px」)。 – 2013-04-16 22:09:21