(function($){
$(window).load(function(){
$("#content_1").mCustomScrollbar({
scrollButtons: {
enable: true
},
theme: "dark",
horizontalScroll: true,
advanced: { updateOnContentResize: true, updateOnBrowserResize: true }
});
});
})(jQuery);
我正在使用上面的代码在同一内容中显示水平和垂直滚动条,但是只显示水平滚动条。如何强制显示两个滚动条?
答案 0 :(得分:5)
$("#content_1").mCustomScrollbar({
axis:"yx",
setHeight: 'auto',
setWidth: "auto",
theme:"dark"
});
您可以在http://manos.malihu.gr/jquery-custom-content-scroller/
页面上找到部分内容我相信setHeight:“auto”和setWidth“auto”主要是帮助这项工作。
答案 1 :(得分:0)
好的,这也成了我的问题。似乎mcustomscrollbar目前不支持此功能。你可以嵌套它但你不能在mcustomscrollbar的同一个实例中有垂直和水平滚动条。不妨使用另一个滚动条插件。您可以参考this thread。