如何模拟触摸屏样式滚动?

发布于 2024-12-25 11:49:39 字数 85 浏览 0 评论 0原文

我想尝试模拟 PC/Mac 触摸屏设备上的触摸滚动手势。但是,我不想禁用滚轮。不过我想隐藏滚动条。

有谁知道有任何演示/代码试图做到这一点?

I want to try to emulate the touch scroll gestures found on touchscreen devices for PC/Mac. However, I don't want to disable the scrollwheel. I would like to hide the scrollbar though.

Does anyone know any demos/code out there that attempts to do this?

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

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

发布评论

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

评论(2

噩梦成真你也成魔 2025-01-01 11:49:39

在某些浏览器1上,隐藏主滚动条是不可能的。不过一般的方法是这样的:

html {
    overflow: hidden;
}

Demo,以及这是一个处理滚轮的演示。


1 即 IE8 及更低版本。

http://www.switchonthecode.com/tutorials/javascript-tutorial-the -滚轮

On certain browsers1, hiding the main scrollbar is impossible. However, the general method is this:

html {
    overflow: hidden;
}

Demo, and here's a demo with the scrollwheel handled.


1 i.e. IE8 and lower.

http://www.switchonthecode.com/tutorials/javascript-tutorial-the-scroll-wheel

各自安好 2025-01-01 11:49:39

在基于 Webkit 的浏览器(例如 Chrome)中,您可以使用 ::-webkit-scrollbar

::-webkit-scrollbar {
  display: none;
}

在 Firefox 中,您可以使用 滚动条宽度

* {
  scrollbar-width: none;
}

In Webkit-based browsers (e.g., Chrome), you can use ::-webkit-scrollbar:

::-webkit-scrollbar {
  display: none;
}

In Firefox, you can use scrollbar-width:

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