我有一个 jQuery 图像滚动器,它使用perpective
和transform: translateZ
CSS 属性来模拟深度。它在 Chrome 中正确呈现,但在 IE10 或 Firefox 中不正确。
这是完整的项目(单击“谁来”菜单链接查看图像滚动条): http ://www.girlguiding.org.uk/test/biggig/index.html 这里是相关代码的 jsFiddle : http: //jsfiddle.net/moosefetcher/rxCMr/28/ (我不知道为什么,但stackoverflow告诉我我需要包含链接到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 中可能不起作用?干杯。