使用jScrollPane,拖动块不会到达滚动条的底部

发布于 2024-09-26 06:06:49 字数 506 浏览 2 评论 0原文

我以前使用过 jScrollPane,但这次我在正确使用它时遇到了一些麻烦。

我在网站的两个页面中使用它,并且两个拖动块(在我的例子中为橙色框)永远不会到达滚动轨道的底部。我已经尝试了很多使用边距和填充的方法,但似乎无法让它做出响应。

我将在帖子中保留代码,只是因为 Firebug 可能更容易,但如果您需要更多信息,请发表评论。

它出现的两个页面是 http://juisebox.com/fmg/ index.php/work-with-us/contractshttp ://juisebox.com/fmg/index.php/news-and-media/publications

I've used jScrollPane before but I'm having some trouble getting it right this time.

I am using it in two pages of the site, and on both the drag block (orange box, in my case) never reaches the bottom of the scroll track. I've tried a number of things playing with margins and padding but can't seem to get it to respond.

I'll keep code out of the post solely because it's probably easier to just Firebug the thing, but please comment if you need more information.

The two pages it occurs on are http://juisebox.com/fmg/index.php/work-with-us/contracts and http://juisebox.com/fmg/index.php/news-and-media/publications

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

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

发布评论

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

评论(2

佞臣 2024-10-03 06:06:50

实际上,jScrollPane 在设置拖动高度时的行为是正确且符合预期的。这是因为与本机滚动条一样,拖动的高度与需要滚动的内容量成正比。

如果您想修复拖动的高度并覆盖此行为,则如果您使用的是 jScrollPane 版本 1,请使用 DragMinHeight 和 DragMaxHeight 设置属性(在示例中将它们都设置为 16px)。如果您使用的是版本 2(推荐),则请参阅此示例:

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

Actually, the behaviour of jScrollPane is correct and expected when it sets the height of the drag. This is because as with native scrollbars the height of the drag is proportional to the amount of content that needs to be scrolled.

If you want to fix the height of the drag and override this behaviour then use the dragMinHeight and dragMaxHeight setting properties (set them both to 16px in your example) if you are using jScrollPane version 1. If you are using version 2 (recommended) then please see this example:

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

情丝乱 2024-10-03 06:06:50

jscrollpanedrage 的高度设置不正确。

降低它的高度,它滚动到底部。
通过firebug我把它设置为20px,它可以滚动到底部。

你设置div的方式有问题。

The height of jscrollpanedrage is not set properly.

Reduce the height of that , it is scrolling till botton.
through firebug i made it 20px, it could scroll to the bottom.

The way you set the div has some problem.

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