onPageScroll延时变化
/**监听页面滚动 */onPageScroll: function (e) { clearTimeout(this.data.s_timer) this.data.s_timer = setTimeout(() => { this.setData({ navClass: e.scrollTop >= 128 ? 'nav' : '' }) }, 30)}, |
这样设置显示和隐藏在开发工具里有延时,要过两三秒才能变,用了定时器节流也不行,是什么问题?求助。。。
