北京经济技术开发区经开区虚拟城市项目-【前端】-Web
AdaKing88
2023-08-17 edc7cb76a7568b1582c2d343d25c1b7aefd6349c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
function scrollStart(){
    $('body').mCustomScrollbar({
        theme:"thick",
        scrollInertia:700,
        // mouseWheelPixels:10,
        horizontalScroll:false,
        // axis:"yx",
        scrollbarPosition:"outside",//滚动线的位置,在容器内部还是外部 inside(default)|outside (如果容器的position是static值,则添加position:relative)
        autoDraggerLength: true,//根据内容区域自动调整滚动条拖块的长度
        autoExpandScrollbar: true,
        advanced:{
            updateOnContentResize:true,
        }
    });
}
 
function scrollDestroy(){
    $('body').mCustomScrollbar("destroy")
}