码迷,mamicode.com
首页 > 其他好文 > 详细

滚轮事件来写懒加载

时间:2017-10-10 16:47:29      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:判断   end   eve   detail   dom   滚动条   加载   scrolltop   scrollto   

<div class="table"  @mousewheel="scroll" @DOMMouseScroll="scroll" @touchend="scroll" ref="table">

  

 

scroll(e){
                var table=document.querySelector(‘.el-table__body-wrapper‘);
                var a=table.clientHeight;//可视高度
                var b=table.scrollHeight;//滚动条长度
                var c=table.scrollTop;//滚动条高度
                // console.log(c);
                e = e || window.event;
                if(a+c>=b){
                    if (e.wheelDelta) {  //判断浏览器IE,谷歌滑轮事件
                        if (e.wheelDelta > 0) { //当滑轮向上滚动时
                            //事件
                        }
                        if (e.wheelDelta < 0) { //当滑轮向下滚动时
                            //事件
                            this.loadMore();
                            console.log(2);
                        }
                    } else if (e.detail) {  //Firefox滑轮事件
                        if (e.detail> 0) { //当滑轮向上滚动时
                            //事件
                        }
                        if (e.detail< 0) { //当滑轮向下滚动时
                            //事件
                            this.loadMore();
                        }
                    }

                }
            },

 

滚轮事件来写懒加载

标签:判断   end   eve   detail   dom   滚动条   加载   scrolltop   scrollto   

原文地址:http://www.cnblogs.com/yiyi17/p/7645341.html

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