下载jquery.mCustomScrollbar包可以去github上搜。
将jquery.mCustomScrollbar的js与css文件导入项目中。
接下来在html页面导入用到的js与css(bootstrap,jquery,mCustomScrollbar)。
<link rel="stylesheet" th:href="@{/bootstrap/css/bootstrap.min.css}">
<link rel="stylesheet" th:href="@{/plugins/jquery-mcustomscrollbar/css/jquery.mCustomScrollbar.css}">
<script th:src="@{/js/jquery-3.6.0.min.js}"></script>
<script th:src="@{/bootstrap/js/bootstrap.bundle.min.js}"></script>
<script th:src="@{/plugins/jquery-mcustomscrollbar/js/jquery.mCustomScrollbar.js}"></script>
编写html例子
<!--
一:添加bootstrap样式增加滚动条
其实只要在 相关模块的 class属性中,再加上 pre-scrollable 即可。
例如是在<div >中添加pre-scrollable:
```html
<div class="pre-scrollable">
```
二:通过设置overflow增加滚动条
```html
<div style=" overflow:scroll; width:400px; height:400px;”></div>
```
记住宽和高一定要设置噢,否则不成的,不过在不超出时,会有下面的滚动条,所以不是最好的选择.
```html
<div style=" overflow-y:auto; overflow-x:auto; width:400px; height:400px;”></div>
```
记住宽和高一定要设置噢,否则不成的.这样比较好的是,在宽和高不超出时,只是一条线.
三:直接为div指定overflow属性为auto即可,但是必须指定div的高度,如下:
```html
<div style="position:absolute; height:400px; overflow:auto"></div>
```
如果要出现水平滚动条,则: overflow-x:auto
同理,垂直滚动条为: overflow-y:auto
如果该div被包含在其他对象例如td中,则位置可设为相对:position:relative
三:隐藏滚动条
{overflow: hidden !important;} 或者 {overflow-x: hidden; overflow-y: hidden;}可分别隐藏x轴或y轴的滚动条
-->
<div id="list"
class="pre-scrollable"
style="height:823px;overflow:auto;">
<p>...</p>
<p>...</p>
<p>...</p>
<p>...</p>
......
</div>
若使用pre-scrollable,则要设置样式,pre-scrollable会限制块的高度,
<style type="text/css">
.pre-scrollable {
max-height: 100%; //最大高度为340px
overflow-y: scroll;
}
</style>
还要写js,规定其样式
$("#list").mCustomScrollbar({
theme: "dark",//主题
axis: "y" //X轴的话:axis:"x" xy都要:axis:"xy"
})
在具体的可以去官网学习mCustomScrollbar