如何禁用jScrollPane的垂直滚动?

时间:2012-07-24 12:28:23

标签: jquery jquery-plugins jscrollpane jquery-jscrollpane

我正在使用jQuery插件jScrollPane。我想禁用我设置的滚动窗格的垂直滚动。

我该怎么做?

我已经检查了他们的网站,但他们没有官方的API页面。

1 个答案:

答案 0 :(得分:1)

他们可能没有正式的api页面,但他们确实有可以提供帮助的示例。例如,以下页面包含此问题的解决方案:http://jscrollpane.kelvinluck.com/arrows.html

页面javascript

$(function()
{
    $('.scroll-pane').jScrollPane({showArrows: true});
});

Page CSS

/* Styles specific to this particular page */
.scroll-pane
{
    width: 100%;
    height: 200px;
    overflow: auto;
}
.horizontal-only
{
    height: auto;
    max-height: 200px;
}

这似乎解释了如何在这里实现目标。