gpt4 book ai didi

ios - z-index 在 iOS 和 Safari macOS 中反转

转载 作者:行者123 更新时间:2023-11-27 23:54:37 28 4
gpt4 key购买 nike

这些图像的 z-index 设置为蓝色、红色、绿色,但在 iOS 浏览器和 macOS 上的 Safari 中,顺序相反,因此它们显示绿色、红色、蓝色。

这是一个 CodePen,这个问题会影响所有 iOS 浏览器和 macOS 上的 Safari。

https://codepen.io/W3-design/pen/pBOJyy

HTML:

<div class="stacked-images">
<img src="https://via.placeholder.com/320x180/0000FF">
<img src="https://via.placeholder.com/320x180/FF0000">
<img src="https://via.placeholder.com/320x180/00FF00">
</div>

SCSS:

.stacked-images {
min-height: 500px;
position: relative;
margin: 20px;

img {
position: absolute;
opacity: 0.9;
transition: transform .5s ease-in-out;
transform: translateZ(-1000px) rotate3d(1,0,0,-55deg) rotate3d(0,0,1,-30deg);
-webkit-transform: translateZ(-1000px) rotate3d(1,0,0,-55deg) rotate3d(0,0,1,-30deg);

&:nth-of-type(1) {
z-index: 100;
top: 0;
}

&:nth-of-type(2) {
z-index: 90;
top: 80px;
}

&:nth-of-type(3) {
z-index: 80;
top: 160px;
}

&:hover {
transform: rotate3d(0, 0, 0, 0) scale(1.1,1.1);
-webkit-transform: rotate3d(0, 0, 0, 0) scale(1.1,1.1);
opacity: 1;
z-index: 101;
}
}
}

我希望 z-index 在所有浏览器中都相同。

最佳答案

给你:

.stacked-images {
min-height: 500px;
position: relative;
margin: 20px;
}

img {
position: absolute;
opacity: 0.9;
transition: transform .5s ease-in-out;
transform: translateZ(-1000px) rotate3d(1, 0, 0, 55deg) rotate3d(0, 0, 1, -30deg);
}

img:nth-of-type(1) {
z-index: 100;
top: 0;
}

img:nth-of-type(2) {
z-index: 90;
top: 80px;
}

img:nth-of-type(3) {
z-index: 80;
top: 160px;
}

img:hover {
transform: rotate3d(0, 0, 0, 0) scale(1.1, 1.1);
opacity: 1;
z-index: 101;
}
<div class="stacked-images">
<img src="https://via.placeholder.com/320x180/0000FF">
<img src="https://via.placeholder.com/320x180/FF0000">
<img src="https://via.placeholder.com/320x180/00FF00">
</div>

关于ios - z-index 在 iOS 和 Safari macOS 中反转,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56333101/

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