滚轮事件来写懒加载

<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();
                        }
                    }

                }
            },

 

posted @ 2017-10-10 14:14  地铁程序员  阅读(163)  评论(0编辑  收藏  举报