jscrollpane垂直滚动条

时间:2011-05-16 01:28:47

标签: javascript jscrollpane

是否可以关闭jscrollpane中的垂直滚动条?还有一个可以使用/设置的变量列表吗?

$(function()
{
    var api = $('.scroll-pane').jScrollPane({showArrows:false}).data('jsp');
    $('#scroll-up').bind(
        'click',
        function()
        {
            api.scrollByY(-10);
            return false;
        }
    );
    $('#scroll-down').bind(
        'click',
        function()
        {
            api.scrollByY(10);
            return false;
        }
    );
});

1 个答案:

答案 0 :(得分:3)

从jquery.jscrollpane.css中删除这些代码:

.jspVerticalBar
{
    position: absolute;
    top: 0;
    right: 0;
    width: 16px;
    height: 100%;
    background: red;
}

它对我有用。