jScrollPane是一个流行的jQuery插件,用于自定义网页滚动条。要禁用水平滚动条,可以通过以下几种方法实现:
$('.scroll-pane').jScrollPane({
showArrows: false,
horizontalGutter: 0,
horizontalDragMaxWidth: 0,
horizontalDragMinWidth: 0,
animateScroll: false,
maintainPosition: true,
hideFocus: true,
autoReinitialise: true,
verticalDragMinHeight: 0,
verticalDragMaxHeight: 0,
contentWidth: '0px' // 关键设置
});
.jspHorizontalBar {
display: none !important;
height: 0 !important;
}
$('.scroll-pane').jScrollPane();
$('.jspHorizontalBar').hide();
$('.scroll-pane').width('auto').jScrollPane({
autoReinitialise: true
});
以上方法可以根据具体需求选择使用,通常方法一和方法二是最直接有效的解决方案。