Jscrollpane在底部初始化

发布于 2025-01-05 06:37:26 字数 145 浏览 0 评论 0原文

我正在使用 jscrollpane 插件 作为自定义滚动条。我无法完成的是在底部初始化,即每当加载该窗口时,它应该自动滚动到底部。非常感谢任何帮助。

I am using the jscrollpane plugin for a custom scrollbar. What i cant accomplish is to initialize at the bottom i.e whenever that window is loaded it should be auto scrolled to the bottom. Any help is greatly appreciated.

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

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

发布评论

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

评论(2

原来是傀儡 2025-01-12 06:37:26

因为您的网站中可能有多个 jScrollPane 元素,所以您需要遍历所有这些元素并调用 scrollToBottom 将滚动条移动到底部:

$('.scroll-pane').jScrollPane().each(function(){
    $(this).data('jsp').scrollToBottom();
});

但是当然,如​​果您想要要将滚动条移动到一个特定 jScrollPane 实例的底部#myJScrollPane,请使用以下命令:

$('#scroll-pane-1').jScrollPane().data('jsp').scrollToBottom();

示例:

我更新了 @scessor 创建的演示。 点击此处查看。

Because you might have multiple jScrollPane elements in your website you need to iterate through all of them and call scrollToBottom to move the scroll bar to the bottom:

$('.scroll-pane').jScrollPane().each(function(){
    $(this).data('jsp').scrollToBottom();
});

But of course if you want to move the scroll bar to the bottom of one specific jScrollPane instance #myJScrollPane use this:

$('#scroll-pane-1').jScrollPane().data('jsp').scrollToBottom();

Example:

I updated the demo created by @scessor. Click here to see it.

伴梦长久 2025-01-12 06:37:26

scrollTo 方法应该适用于此。

http://jscrollpane.kelvinluck.com/scroll_to.html

var api = pane.data('jsp');
api.scrollTo(0, y);

其中 y 是您所在区域的高度滚动的。如果这有所不同,或者您不知道,请使用您不可能达到的非常高的值,它会滚动到底部。

The scrollTo method should work for this.

http://jscrollpane.kelvinluck.com/scroll_to.html

var api = pane.data('jsp');
api.scrollTo(0, y);

Where y is the height of your area that scrolls. If this varies, or you don't know it, use a very high value that you are not likely to ever reach and it will scroll to the bottom.

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