美文网首页
移动端滑动加载

移动端滑动加载

作者: Volon | 来源:发表于2019-06-20 17:41 被阅读0次
const wrapper = this.refs.wrapper;
        function callback() {
            const top = wrapper.getBoundingClientRect().top
            const windowHeight = window.screen.height
            if (top && top < windowHeight) {
                // 证明 wrapper 已经被滚动到暴露在页面可视范围之内了
                loadMoreFn()
            }
        }

相关文章

网友评论

      本文标题:移动端滑动加载

      本文链接:https://www.haomeiwen.com/subject/kwwjqctx.html