在右端开始水平滚动条

时间:2013-08-28 05:04:33

标签: javascript jquery scroll scrollbar mcustomscrollbar

在mCustomScrollbar中,我想默认将滚动条放在水平位置的右端,所以我尝试了这个:

$('.content').mCustomScrollbar("scrollTo",'last', {horizontalScroll: true});

哪个不起作用。以下工作,但不会将滚动条移动到正确的位置:

$('.content').mCustomScrollbar({horizontalScroll: true});

默认情况下,如何使水平滚动显示在右边?

1 个答案:

答案 0 :(得分:0)

尝试以下

(function($){
    $(window).load(function(){
        $(".content").mCustomScrollbar({advanced:{ // Advanced options
           autoScrollOnFocus: false,
           updateOnContentResize: true, // Scrollbar will be updated on content resize
           updateOnBrowserResize: true  // Scrollbar will be updated on browser resize
        }});
    });
})(jQuery);

点击此链接下载http://www.4shared.com/document/KxCFmv7E/jquerymCustomScrollbarconcatmi.html