jScrollPane 顶部水平滚动条

发布于 2024-09-28 04:47:48 字数 98 浏览 3 评论 0原文

我设置了一个 jScrollPane 水平滚动条,但现在滚动条是水平的,但在顶部(这意味着可滚动内容位于滚动条下方),我需要相反:滚动条在下方,可滚动内容在顶部,我该如何制作? 问候

i got set up a jScrollPane horyzontal scrollbar but right now the scrollbar is horyzontal but on top(this means the scrollable content is below the scrollbar), i need the contrary: scrollbar below, scrollable content on top, how can i make this?
regards

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

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

发布评论

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

评论(1

岛歌少女 2024-10-05 04:47:48

我不确定你是如何获得滚动条下方的可滚动内容的。默认情况下,它出现在滚动条上方(例如,请参阅此示例:http://jscrollpane.kelvinluck.com/basic。 html )。您使用的是哪个版本的 jScrollPane?您有显示问题的 URL 吗?


根据下面给出的说明进行更新:

您可以使用 CSS 将滚动条放在内容上方。例如

.jspHorizontalBar
{
    top: 0;

}
.jspPane
{
    margin: 16px 0 0;
}

希望它有帮助:)

I'm not sure how you have got the scrollable content below the scrollbar. By default it appears above the scrollbar (e.g. see this example: http://jscrollpane.kelvinluck.com/basic.html ). What version of jScrollPane are you using? Do you have a URL showing the problem?


Update based on the clarifications given below:

You can use CSS to put the scroll bar ABOVE the content. e.g.

.jspHorizontalBar
{
    top: 0;

}
.jspPane
{
    margin: 16px 0 0;
}

Hope it helps :)

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