禁用 iPad 上的水平滚动

发布于 2024-10-20 12:07:23 字数 102 浏览 4 评论 0原文

我希望在访问我的网站时在 Safari 中禁用 iPad 上的水平滚动条。

我尝试过 e.preventDefault 但这似乎禁用了垂直和水平滚动。

谢谢!

I’m looking to disable the horizontal scroll bar on the iPad in Safari when on my site.

I’ve tried e.preventDefault but this seems to disable both vertical and horizontal scrolling.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

赢得她心 2024-10-27 12:07:23

将其插入 html 页面的头部:

<meta name="viewport" content="width=device-width" />

Insert this in the head of the html page :

<meta name="viewport" content="width=device-width" />
伴我老 2024-10-27 12:07:23

试试这个

<meta name="viewport" content="width=device-width; initial-scale = 1.0; maximum-scale=1.0; user-scalable=no" />
<style type="text/css">
body {
overflow-x:hidden;
}

try this

<meta name="viewport" content="width=device-width; initial-scale = 1.0; maximum-scale=1.0; user-scalable=no" />
<style type="text/css">
body {
overflow-x:hidden;
}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文