jscrollpane - 同步两个div

发布于 2024-12-09 06:28:12 字数 261 浏览 0 评论 0原文

我有一个用 jscrollpane.js 定制的滚动条。如何让这个滚动条控制另一个div的滚动?第二个 div 有溢出:隐藏。

我知道这应该是可能的;此链接有一些建议,但由于某种原因,它们都不适合我。 jQuery jScrollPane 同步滚动

这可以完成吗?如何/在哪里附加工作代码?

I have a scrollbar customized with jscrollpane.js. How can I make this scrollbar control scrolling of another div? The second div has overflow: hidden.

I know this should be possible; there's a few suggestions at this link, but for some reason none of them works for me..
jQuery jScrollPane Synchronize Scroll

Can this be done, and how / where to attach working code?

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

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

发布评论

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

评论(1

眼前雾蒙蒙 2024-12-16 06:28:12

好的,想通了:通过使用 jscrollpane 和 head 中的这段代码,使两个 div 都通过一个自定义滚动条滚动:

$(function()
{
$("#div2").bind('jsp-scroll-y', function(event, scrollPositionY) {
$("#div1").scrollTop(scrollPositionY);
}).jScrollPane();
$("#document").jScrollPane();
});

Ok figured it out: Made both divs scroll with one customized scrollbar by using jscrollpane and this code in head:

$(function()
{
$("#div2").bind('jsp-scroll-y', function(event, scrollPositionY) {
$("#div1").scrollTop(scrollPositionY);
}).jScrollPane();
$("#document").jScrollPane();
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文