码迷,mamicode.com
首页 > 微信 > 详细

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

时间:2018-01-22 14:04:23      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:微信   star   start   body   pos   功能   val   interval   hat   

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触摸计时

标签:微信   star   start   body   pos   功能   val   interval   hat   

原文地址:https://www.cnblogs.com/dianzan/p/8328547.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!