有没有办法让精简卷轴的滚动区域高度比页面高度短,所以它在导航后开始并在页面底部之前结束? 我尝试了jsFiddle示例(code page,view page),但这不是我的解决方案"
var _nScroll = false;
if (typeof $.fn.niceScroll != 'undefined') {
_nScroll = {
horizrailenabled: false,
zindex: 2,
cursorborder: "none",
cursorwidth: "8px",
cursorcolor: "#515154",
background: "#cbcdd0",
autohidemode: false,
railoffset: {top:'50px',left:0}
};
$("html").niceScroll( _nScroll );
}
$(".nicescroll-rails").css({
'top': '70px',
'right': '7px',
'bottom': '50px',
'height': $(window).height() - 100
});