jQuery自定义内容滚动条 - 触发scrollTop事件

时间:2016-11-06 13:18:53

标签: javascript jquery scrollbar

如何触发ScrollTop事件以使其他插件与自定义内容滚动器一起使用

我需要使用一些插件来使用来自jquery和javascript的scroll和scrollTop事件。是否可以在不重写插件的情况下触发这些事件?

关于自定义内容滚动条事件我发现了这个: custom content scroller #Events

如果不是,您是否知道如何找到解决方法?

插件:Link to jQuery custom content scroller

1 个答案:

答案 0 :(得分:0)

对于jQuery

$('.element').off('scroll').on('scroll', function () {
    var scrollTop = $(this).scrollTop();
    if(scrollTop == 0){
        console.log('ScrollTop');
    } else if (scrollTop + $(this).innerHeight() >= this.scrollHeight) {
        console.log('ScrollBottom');
    }
});