时间:2019-04-30 来源:小程序工厂
我也是这样的问题~
if (scrollTop < 515 && that.data.monthactiveKey==2) { // console.log(11111111111) that.setData({ monthactiveKey: 1 }) return; } if (scrollTop > 515 && scrollTop < 1030 && that.data.monthactiveKey==1) { // console.log(222222222) that.setData({ monthactiveKey: 2 }) return; }
这么写会不会好点
先下班走了。
你的不用scroll-view不行吗?或者还是这个onPageScroll监听不到scroll-view的滚动高度。我没试过
亲你这个是scroll-view里面吗
在真机上都快。就是开发者工具上卡得要死。要过五六秒才会有效果
我是这样写的
//监听页面滚动高度
onPageScroll(res) {
if (res.scrollTop >= 400) {
this.setData({
flag: true
})
} else {
this.setData({
flag: false
})
}
},
安卓机很卡
ios 快
是在开发者工具上?真机上很快吧