mCustomScrollbar 滚动按钮 - 滚动类型:“步进”

Posted

技术标签:

【中文标题】mCustomScrollbar 滚动按钮 - 滚动类型:“步进”【英文标题】:mCustomScrollbar scrollButtons - scrolltype: "stepped" 【发布时间】:2018-04-09 01:26:54 【问题描述】:

有没有人遇到过设置“scrollButtons: scrollType: "stepped" 按钮在触控设备上不起作用的问题? 代码:

$("container").mCustomScrollbar(
    setHeight: false,
    autoExpandScrollbar:true,
    snapAmount: height,
    mouseWheel: 
        enable: false,
        scrollAmount: height,
        normalizeDelta:true
    ,
    keyboard: 
        enable: false,
        scrollAmount: height
    ,
    scrollButtons: 
        enable: true,
        scrollAmount: 1,
        scrollType: "stepped"
    ,
    advanced: 
        updateOnContentResize: true
    ,
    scrollInertia: 1,
    contentTouchScroll: 10000,
    documentTouchScroll: false
);

【问题讨论】:

您使用的是哪个版本的 mCustomScrollbar.js? @Jinesh 3.1.5(最新) 【参考方案1】:

你可以使用这个代码

<!-- custom scrollbar script -->
<script src="/path/to/jquery.mCustomScrollbar.js"></script>
<!-- detect mobile script -->
<script src="http://cdnjs.cloudflare.com/ajax/libs/mobile-detect/1.3.5/mobile-detect.min.js"></script>
<!-- custom scrollbar function call -->
<script>
    (function($)
        var md=new MobileDetect(window.navigator.userAgent); //get device type
        $(window).load(function()
            if(!md.mobile()) //apply custom scrollbar if device is not mobile
                $(selector).mCustomScrollbar();
            
        );
    )(jQuery);
</script>

【讨论】:

明白,不过我要mCustomScrollbar@touch device:) 你能分享你的网址吗?

以上是关于mCustomScrollbar 滚动按钮 - 滚动类型:“步进”的主要内容,如果未能解决你的问题,请参考以下文章

自定义滚动条mCustomScrollbar

使用 mCustomScrollbar 一次滚动一个元素

mCustomScrollbar 滚动条的使用

带有自定义滚动条 (mCustomScrollbar) 的自定义选择 (Nice select)

jquery mCustomScrollbar 滚动条宽度的设置

jQuery 自定义网页滚动条样式插件 mCustomScrollbar 的介绍和使用方法