前了个端

如何判断html页面停止滚动?

2018-03-07  本文已影响7人  刘勇虎

写在开始的话

查遍的文献,没有找到js或者jquery定义好的方法可用,最后迫不得已自己写了个方法。(如果哪位同学知道有其他方法,欢迎讨论)

代码

            var count_index = 0;
            $(window).scroll(
                function(e) {
                    if(count_index == 0) {
                        var timeIntervalFunction = setInterval(function() {
                            count_index--;
                            if(count_index <= 0) {
                                console.log("scroll end = " + count_index);
                                clearInterval(timeIntervalFunction);
                                count_index = 0;
                            }
                        }, 300);
                    }
                    count_index++;
                }
            );

效果

判断是否停止滑动_演示效果.gif

   
   
   

友情链接:

技术博客        简书主页

上一篇下一篇

猜你喜欢

热点阅读