微信小程序 功能函数 touch触摸计时

Posted ThisCall

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序 功能函数 touch触摸计时相关的知识,希望对你有一定的参考价值。

shiFN:function(e){
// touchstart
// touchend
let that=this;
let n=0;
// 判断是开始还是结束的参数
let textTure = e.type;
that.setData({
textTure: textTure
})
if (textTure ==‘touchstart‘){
let lovetime = setInterval(function () {
n += 0.5;
 
if (that.data.textTure==‘touchend‘) {
clearInterval(lovetime);
}
console.log(n);
that.setData({
bian: n
})
}, 500)
 
}
},
 
<view class=‘bt-item‘ bindtouchend=‘shiFN‘ bindtouchstart=‘shiFN‘></view>

以上是关于微信小程序 功能函数 touch触摸计时的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序分、秒倒计时,补零

微信小程序——倒计时功能

微信小程序 倒计时功能

微信小程序之触控事件

微信小程序:设置页面计时自动跳转

微信小程序----团购或秒杀的批量倒计时实现