需要在 jScrollPane 中禁用拖动

发布于 2024-11-15 17:51:13 字数 152 浏览 4 评论 0原文

我在 HTML 页面中使用 jScrollPane 。我想禁用scrollDrag功能,因为我只需要向上和向下箭头来滚动页面,而不是通过拖动轨道/拖动器 怎么办?

I'm using jScrollPane for my HTML page. I want to disable the scrollDrag functionality because I need only Up and down arrow to scroll the page not by dragging the track/dragger
How to do?

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

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

发布评论

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

评论(2

我是男神闪亮亮 2024-11-22 17:51:13

JScrollPaneJComponent 继承 processMouseMotionEvent() 如果您要使用自己的版本覆盖继承的 processMouseMotionEvent()然后您可以选择忽略 MouseEvent.MOUSE_DRAGGED 事件

JScrollPane inherits the processMouseMotionEvent() from JComponent If you were to override the inherited processMouseMotionEvent() with you own version you could then choose to ignore the MouseEvent.MOUSE_DRAGGED event

治碍 2024-11-22 17:51:13
.jspDrag {
    background:#bbd;
    position:relative;
    top:0;
    left:0;
    cursor:pointer;
    **display:none;**
}
.jspDrag {
    background:#bbd;
    position:relative;
    top:0;
    left:0;
    cursor:pointer;
    **display:none;**
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文