gpt4 book ai didi

html - 无法在移动 iOS Safari 上滚动 iframe

转载 作者:太空狗 更新时间:2023-10-29 14:54:46 27 4
gpt4 key购买 nike

即使将溢出设置为滚动,也无法让覆盖层中的 google 表单 iframe 滚动,而是下面的背景在移动设备上不断滚动。它在桌面 chrome/safari 上的 iframe 内滚动得很好,即使我在桌面 chrome 上将设备更改为移动设备也是如此。

HTML:

     <div class="modal fade" id="follow-modal" tabindex="-1" role="dialog" aria-labelledby="follow-modal">
<div class="modal-background"></div>
<div class="modal-wrapper">
<div class="survey-wrapper">
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLScYLpClPexPWtT9UETnksKMKnzH5xRgs-UikH21Ktl6PhJQ-w/viewform?embedded=true" frameborder="0" marginheight="0" marginwidth="0">Loading...</iframe>
</div>
</div>
</div>

SCSS:

#follow-modal {
.modal-background {
background-color: rgba(0,0,0,.9);
}
.modal-wrapper {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: flex;
align-items: flex-start;
justify-content: center;
}
.survey-wrapper {
position: relative;
background-color: transparent;
text-align: center;
margin-top: 100px;
width: 700px;
-webkit-overflow-scrolling: touch;
overflow-y: scroll;
@media (max-width: $screen-md-min) {
margin-left: 10px;
margin-right: 10px;
}
iframe {
width: 100%;
height: 600px;
}
}
h3 {
margin-bottom: 15px;
}
button.close {
color: white;
position: absolute;
top: -60px;
right: -50px;
opacity: 1;
@media (max-width: $screen-md-min) {
right: -20px;
}
&:hover {
color: white;
}
}
}

最佳答案

如果其他答案对您不起作用(因为它们对我不起作用),请查看此代码:

<div style="overflow: auto!important; -webkit-overflow-scrolling: touch!important;">
<iframe>Loading...</iframe>
</div>

关于html - 无法在移动 iOS Safari 上滚动 iframe,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43262156/

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