Div 不使用 jScrollPane 显示滚动条
如果这个问题已经被问过,我很抱歉,但我正在努力寻找答案。
我在 div
上使用 jQuery jScrollPane。我可以告诉插件已正确链接,因为标准浏览器滚动条已被删除,但替换中没有添加 jScrollPane 滚动条,我只是无法向下滚动内容。
我的标记很简单:
<div class="classa">
...Long content here...
</div>
Javascript:
$(document).ready(function(){
$(".classa").jScrollPane();
});
有没有人经历过这个之前?我缺少什么简单的东西吗?
我想我可能在某个地方丢失了一些CSS,否则我不知道如何指定滚动条的颜色...
您的帮助将不胜感激
Apologies if this question has already been asked, but I'm struggling to find an answer on SO.
I'm using jQuery jScrollPane on a div
. I can tell the plugin has been linked correctly as the standard browser scroll bar is removed, but no jScrollPane scrollbar is added in replacement, I just can't scroll down the content..
My markup is as simple as:
<div class="classa">
...Long content here...
</div>
Javascript:
$(document).ready(function(){
$(".classa").jScrollPane();
});
Has anyone experienced this before? Is there something simple I'm missing?
I think I might be missing some CSS somewhere or something, otherwise I don't know how to specify the colour of the scrollbar anyway...
Your help would be much appreciated
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
此 URL 上有一些 jScrollPane 示例的 CSS 代码示例: http://www .kelvinluck.com/assets/jquery/jScrollPane/basic.html。
示例 CSS 可以在以下位置找到:
http://www.kelvinluck.com/assets/jquery/jScrollPane/styles /jScrollPane.css
希望有帮助。
我的错误 - CSS 应该与旧版本的 jScrollPane 一起使用。可以在这里找到要使用的正确 CSS: http://jscrollpane.kelvinluck.com/style /jquery.jscrollpane.css
There is some sample CSS code for the jScrollPane example at this URL: http://www.kelvinluck.com/assets/jquery/jScrollPane/basic.html.
The sample CSS can be found at:
http://www.kelvinluck.com/assets/jquery/jScrollPane/styles/jScrollPane.css
Hope that helps.
My mistake - that CSS is to be used with an older version of jScrollPane. The correct CSS to use can be found here: http://jscrollpane.kelvinluck.com/style/jquery.jscrollpane.css
尝试将“...此处内容较长...”包含在
标签中。
像这样:
try enclosing the ".... long content here....." in the
tag.
like so: