有没有办法在ipad上的safari中锁定水平滚动?
有谁知道是否有办法使用 javascript/css/html 锁定 ipad 上 safari 中的水平滚动?
我有以下元标记,试图修复视口
<!-- Mobile viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
任何帮助将不胜感激!
Does anybody know if there is a way to lock the horizontal scroll in safari on ipad using javascript/css/html?
I have the following meta tag in place in an attempt to fix the viewport
<!-- Mobile viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
Any help would be appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果有人感兴趣,我通过添加
touchmove 事件来解决这个问题。
In case anyone is interested, I managed to solve this problem by adding
to the touchmove event.