如何修复调整大小时 jScrollPane 的奇怪行为?

发布于 2024-11-06 06:04:20 字数 237 浏览 0 评论 0原文

我需要有关 jScrollPane 的专家建议!

当我调整浏览器窗口大小时,它拒绝调整大小!

当我降低浏览器窗口的高度时,滚动条的拖动手柄可以拖动到内容面板下边框下方,并且内容在底部被切断。另一方面,当我增加浏览器窗口的高度时,滚动条的高度保持不变(未调整大小),并且滚动条下边缘下方有空白空间。

有人可以解释一下发生了什么事以及我该如何解决这个问题吗?我将不胜感激!

希望知道解决方案的人回复!

I want expert advice on jScrollPane, please!

It refuses to resize when I resize the browser window!

When I decrease the height of browser window, the drag handle of the scroll bar can be dragged way below the lower border of the content panel – and the content gets cut off at the bottom. On the other hand, when I increase the height of browser window, the height of the scrollbar remains the same (un-resized), and there's empty space below the lower edge of the scroll bar.

Could someone please explain what's going on and how I can fix that? I would be truly grateful!

Hope to hear back from someone who knows the solution!

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

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

发布评论

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

评论(1

合久必婚 2024-11-13 06:04:20

找到解决方案:在调整大小时重新初始化 jScrollPane:

<script type="text/javascript">
$(function () {
    $('#pane1').jScrollPane({
        showArrows: true,
        dragMaxHeight: 100,
        wheelSpeed: 20
    });
});
$(window).resize(function () {
    $('#pane1').jScrollPane({
        showArrows: true,
        dragMaxHeight: 100,
        wheelSpeed: 20
    });
});
</script>

它有效!

希望它可以帮助遇到同样问题的其他人。

Found the solution: reinitializing jScrollPane on resize:

<script type="text/javascript">
$(function () {
    $('#pane1').jScrollPane({
        showArrows: true,
        dragMaxHeight: 100,
        wheelSpeed: 20
    });
});
$(window).resize(function () {
    $('#pane1').jScrollPane({
        showArrows: true,
        dragMaxHeight: 100,
        wheelSpeed: 20
    });
});
</script>

It worked!

Hope it helps someone else who has experienced the same issue.

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