在jScrollPane(JQuery)中禁用水平滚动条,可以通过以下步骤实现:
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jScrollPane/2.3.9/style/jquery.jscrollpane.min.css" /><script src="https://cdnjs.cloudflare.com/ajax/libs/jScrollPane/2.3.9/script/jquery.jscrollpane.min.js"></script>
.jspHorizontalBar {
display: none;
}
$(document).ready(function() {
$('.scroll-pane').jScrollPane({
showArrows: true,
horizontalGutter: 0,
horizontalScroll: false
});
});
<div class="scroll-pane">
<p>Your content here...</p>
</div>
通过以上步骤,您可以在jScrollPane中禁用水平滚动条。
领取专属 10元无门槛券
手把手带您无忧上云