gpt4 book ai didi

html - 排列立方体面的 z-index

转载 作者:可可西里 更新时间:2023-11-01 13:31:46 26 4
gpt4 key购买 nike

如何排列相互重叠的立方体的面。在这里,我发现了一个在 IE 中工作的立方体,我现在的问题是立方体的面是透明的,所以当我将图像放在它上面时,它会相互重叠。

提前谢谢你。

这是输出:http://codepen.io/anon/pen/VYMapx这是 CSS:

p {
font: 700 1.5em trebuchet ms, century gothic, verdana, sans-serif;
}

.cube, .cube * {
position: absolute;
top: 50%;
left: 50%;
}

.cube {
user-select: none;
cursor: move;
}

.face {
box-sizing: border-box;
border: solid 1px;
margin: -8em;
width: 16em;
height: 16em;
/** backface-visibility: hidden; /**/
}
.face:nth-child(1) {
background: red;
}
.face:nth-child(2) {
background: yellow;
}
.face:nth-child(3) {
background: lime;
}
.face:nth-child(4) {
background: cyan;
}
.face:nth-child(5) {
background: blue;
}
.face:nth-child(6) {
background: magenta;
}

最佳答案

只需将 transform-style: preserve-3d; 添加到 .cube 元素:

.cube {
user-select: none;
cursor: move;
transform-style: preserve-3d;
-o-transform-style: preserve-3d;
-ms-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
-webkit-transform-style: preserve-3d;
}

还取消注释(提供)backface-visibility:hidden; 不透明Faces

jsBin demo (tested in IE)

文档:https://developer.mozilla.org/en-US/docs/Web/CSS/transform-style

关于html - 排列立方体面的 z-index,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28270417/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com