gpt4 book ai didi

CSS Flipper - iOS/Safari 问题

转载 作者:技术小花猫 更新时间:2023-10-29 11:36:42 25 4
gpt4 key购买 nike

我有一个模拟向导的网页。在用户离开第二步进入第三步后,我正在像卡片一样“翻转”面板。您可以在此 Bootply 中看到它的实际效果.代码如下所示:

<div class="container-fluid" style="background-color:#eee;">
<div class="container">
<div class="flip-container" style="width:200px;">
<div class="flipper">
<div class="front">
<div class="step-2-default" id="step2" style="overflow-x:hidden; padding:0.0rem 1.0rem;">
<label>Step 2</label>
<p>These are the details of the second step</p>
<button id="nextButton2">next</button>
</div>

<div class="step-1-default" id="step1">
<label>Step 1</label>
<p>These are the details of the first step</p>
<button id="nextButton1">next</button>
</div>
</div>

<div class="back">
<div id="step3">
<label>Step 3</label>
<p>Thank you for using this wizard</p>
</div>
</div>
</div>
</div>
</div>
</div>

如果加载 Bootply,您会注意到步骤 1 和 2 中的步骤是可见的。根据我的理解,问题出在 height:auto 属性上。我使用它是因为我的向导中每个步骤的内容大小都是动态的。

它在 Chrome 中运行良好。但是,我不知道如何让它在 iOS/Safari 中工作。感谢您的帮助。

最佳答案

您缺少特定于 webkit 的 backface-visibility:

.front, .back {
backface-visibility: hidden;
-webkit-backface-visibility: hidden;
position: absolute;
top: 0;
left: 0;
}

http://www.bootply.com/RiX9HF5t21

关于CSS Flipper - iOS/Safari 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41447579/

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