码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2018-03-07 17:36:06      阅读:306      评论:0      收藏:0      [点我收藏+]

标签:www   cti   友情链接   如何   .com   页面   fun   http   判断   

写在开始的话

查遍的文献,没有找到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++;
                }
            );

效果

技术分享图片

? ?
? ?
? ?

友情链接:

技术博客 ???????简书主页

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

标签:www   cti   友情链接   如何   .com   页面   fun   http   判断   

原文地址:https://www.cnblogs.com/tig666666/p/8523639.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!