如何模拟触摸屏样式滚动?
我想尝试模拟 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在某些浏览器1上,隐藏主滚动条是不可能的。不过一般的方法是这样的:
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:
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
在基于 Webkit 的浏览器(例如 Chrome)中,您可以使用
::-webkit-scrollbar
:在 Firefox 中,您可以使用
滚动条宽度
:In Webkit-based browsers (e.g., Chrome), you can use
::-webkit-scrollbar
:In Firefox, you can use
scrollbar-width
: