jQuery Perfect Scroll - 在容器中间启动滚动条?

Jas*_*ndo 2 javascript jquery jquery-plugins

如何使用https://github.com/noraesae/perfect-scrollbar使我的滚动条在容器中间启动

我试图通过使用来欺骗它

$(".trek_main_timeline_wrap").perfectScrollbar();

$(".trek_main_timeline_wrap .ps-scrollbar-y-rail").css({
                                                        "left" : "5px",
                                                        "top" : "200px"
                                                       });
Run Code Online (Sandbox Code Playgroud)

但这只是向下推动滚动条,而不是容器内部的内容.

Rob*_*xyz 10

你只需要使用scrollTopupdate:

$('.ps-container').scrollTop(100).perfectScrollbar('update');
Run Code Online (Sandbox Code Playgroud)