需求:页面滚动到底部时,隐藏浮标隐藏
- 主要代码
const height = wx.getSystemInfoSync().windowHeight
const query = wx.createSelectorQuery().in(this)
query.select(‘#list‘).boundingClientRect()
query.selectViewport().scrollOffset()
query.exec((res: any) => {
// 列表的bottom不会为0
// 当列表触底时,有一个窗口的高度的内容处于页面内,所以当列表的bottom等于窗口高度时,列表到达底部
if (res[0].bottom == height) {
// 页面到达底部,此时可以根据需要进行隐藏浮标
}
})