Hen*_*Zhu 19 html css modal-dialog mobile-safari
我创建了一个模态.当模态打开时,我将停止桌面上的滚动overflow:hidden;到<body>.它正在发挥作用.
但它不适用于我的iPhone 6s Mobile Safari.
如何在移动野生动物园中打开模态时阻止滚动?
mat*_*den 28
结合它 position: fixed在iOS上执行此操作...
overflow: hidden;
position: fixed;
Run Code Online (Sandbox Code Playgroud)
小智 27
没有(据我所知)使用CSS实现这一目标的好方法,而不会影响用户体验.
虽然它是Javascript,而不是CSS,我发现这样做的最好方法如下:
// Disable scrolling.
document.ontouchmove = function (e) {
e.preventDefault();
}
// Enable scrolling.
document.ontouchmove = function (e) {
return true;
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
38177 次 |
| 最近记录: |