加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 资源网站 > 资源 > 正文

微信小程序之判断页面滚动方向的示例代码

发布时间:2020-12-14 20:04:34 所属栏目:资源 来源:网络整理
导读:微信小程序中如果判断页面滚动方向? 解决方案 1.用到微信小程序API 获取页面实际高度 nodesRef.boundingClientRect([callback]) 监听用户滑动页面事件onPageScroll。 2.获取页面实际高度 { this.setData({ scrollHeight: rect.height }) console.log(this.d

微信小程序中如果判断页面滚动方向?

解决方案

1.用到微信小程序API

获取页面实际高度 nodesRef.boundingClientRect([callback])

监听用户滑动页面事件onPageScroll。

2.获取页面实际高度

{ this.setData({ scrollHeight: rect.height }) console.log(this.data.scrollHeight) }).exec() },// 假设数据请求 getDataList: function() { wx.request({ url: 'test.php',//仅为示例,并非真实的接口地址 success: function(res) { // 如果该元素下面的数据是动态获取的,此方法在wx.request请求成功的回调函数中调用 this.getScrollHeight() } }) },

3.监听用户滑动页面事件

if (e.scrollTop <= 0) {
// 滚动到最顶部
e.scrollTop = 0;
} else if (e.scrollTop > this.data.scrollHeight) {
// 滚动到最底部
e.scrollTop = this.data.scrollHeight;
}
if (e.scrollTop > this.data.scrollTop || e.scrollTop >= this.data.scrollHeight) {
//向下滚动
console.log('向下 ',this.data.scrollHeight)
} else {
//向上滚动
console.log('向上滚动 ',this.data.scrollHeight)
}
//给scrollTop重新赋值
this.setData({
scrollTop: e.scrollTop
})
},

PS:微信小程序滚动到某个位置改变效果

Some of the words

其中,variable为全局变量,class1、class2即为相应的css

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程之家。

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读