编程语言
首页 > 编程语言> > 小程序监听页面滚动开始和滚动结束

小程序监听页面滚动开始和滚动结束

作者:互联网

具体思路:

使用页面:onPageScroll 函数

2020-06-10_084653.png

文档地址:https://developers.weixin.qq.com/miniprogram/dev/reference/api/Page.html

code

暂时用了个定时器来判断滚动是否结束,能够达到效果

onPageScroll(e){
  this.setState({
    scrollTop:e.scrollTop,
    scrollIng:true
  })
 let timer= setTimeout(()=>{
    if(this.state.scrollTop===e.scrollTop){
      this.setState({
        scrollTop:e.scrollTop,
        scrollIng:false
      })
      console.log('滚动结束')
      clearTimeout(timer)
    }
  },300)
}

标签:滚动,timer,onPageScroll,scrollTop,页面,scrollIng,监听,setState
来源: https://www.cnblogs.com/codedisco/p/13082858.html