1.进入页面开启方法
2.捕捉屏幕点击操作
3.开启定时器,每次点击重新计时
4.定时结束,开始操作
onLoad() {
this.onMember()
this.ceshi()
this.setupCarouselTimer()
},
ceshi(){
// document.getElementById("mybtn").addEventListener('scroll',this.fun);
document.addEventListener("touchstart",this.setupCarouselTimer);
},
setupCarouselTimer() {
console.log('11111')
// 清除之前的定时器
if (this.CarouselTimer) clearTimeout(this.CarouselTimer);
// 设置新的定时器
this.CarouselTimer = setTimeout(() => {
this.handleCarousel();
}, 300000); // 5 分钟 = 300000 毫秒
},
handleCarousel(){
uni.reLaunch({
url: '/pages/home/carousel'
});
},