gpt4 book ai didi

javascript - nicescroll.js - 如何禁用垂直滚动条?

转载 作者:太空宇宙 更新时间:2023-11-03 22:25:43 25 4
gpt4 key购买 nike

我使用 jquery-nicescroll :

$(this.refs.container).niceScroll({
cursorcolor: '#f16221',
cursorwidth: '14',
cursorminheight: '64',
scrollspeed: '50',
autohidemode: 'false',
overflowy: 'false'
})

目前它有两个滚动条:垂直和水平。我需要隐藏/禁用垂直滚动条但还没有找到解决方案。我尝试添加 overflowy: 'false' 但它没有用。 horizrailenabled: false 效果很好,但没有垂直选项。

类似问题: Disable Vertical Scroll in niceScroll Js

如何使用 nicescroll 隐藏垂直滚动条?

最佳答案

我建议添加以下 jQuery 代码以获得完整的解决方案,以禁用和隐藏垂直滚动条:

var nice = 
$(this.refs.container).niceScroll({
cursorcolor: '#f16221',
cursorwidth: '14',
cursorminheight: '64',
scrollspeed: '50',
autohidemode: 'false',
overflowy: 'false'
});

var _super = nice.getContentSize;

nice.getContentSize = function () {
var page = _super.call(nice);
page.h = nice.win.height();
return page;
}

$('.nicescroll-rails.nicescroll-rails-vr').remove();

(在 https://code.google.com/archive/p/jquery-nicescroll/issues/27 中部分提及)

关于javascript - nicescroll.js - 如何禁用垂直滚动条?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51307189/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com