微信小程序监听页面滚动的事件

onPageScroll (e) { 
  console.log(e)
  },




touchStart(e){
    //console.log('滚起来', e);
    this.setData({
      scrollStop: false
    })
  },
  touchEnd(e){
   // console.log('停下来', e);
    this.setData({
      scrollStop: true
    })
  },

微信小程序的文档
scroll-view
https://developers.weixin.qq.com/miniprogram/dev/component/scroll-view.html

你可能感兴趣的:(wx)