jquery-jscrollpane – 如何在jScrollPane(JQuery)中禁用水平滚动条?

前端之家收集整理的这篇文章主要介绍了jquery-jscrollpane – 如何在jScrollPane(JQuery)中禁用水平滚动条?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
你们可以让我知道什么是最好的方式来禁用水银滚动条?

我的div宽度为100%,高度为280px。当我们有很长的连续文本(没有任何空格)时,我们会显示一个水平的滚动条。

Btw我正在使用jscrollPane。

任何建议,将不胜感激。

解决方法

我在jScrollPane中找到的 – 设置对象文档:

contentWidth – int (default undefined)

The width of the content of the scroll pane. The default value of
undefined will allow jScrollPane to calculate the width of it’s
content. However,in some cases you will want to disable this (e.g. to
prevent horizontal scrolling or where the calculation of the size of
the content doesn’t return reliable results)

所以要摆脱水平条,只需设置内容宽度低于容器宽度。

例:

$('#element').jScrollPane({
    contentWidth: '0px'
});
原文链接:https://www.f2er.com/jquery/183196.html

猜你在找的jQuery相关文章