z***@163.com
z***@163.com
  • 发布:2023-06-06 16:21
  • 更新:2023-06-25 21:50
  • 阅读:228

touchcancel事件触发之后怎么不抬起手指重新点击,移动手指可以触发touchmove

分类:uni-app

touchcancel事件触发之后怎么不抬起手指重新点击,移动手指可以触发touchmove

2023-06-06 16:21 负责人:无 分享
已邀请:
昭昭L

昭昭L - 开心就好

// 触摸开始事件(touchstart)  
function onTouchStart() {  
  fingerStatus = 'start'  
}  

// 触摸移动事件(touchmove)  
function onTouchMove() {  
  if (fingerStatus === 'move') {  
    // 手指正在移动,执行相应逻辑  
  }  
}  

// 触摸取消事件(touchcancel)  
function onTouchCancel() {  
  fingerStatus = 'cancel'  
}  

// 触摸结束事件(touchend)  
function onTouchEnd() {  
  fingerStatus = 'end'  
}

要回复问题请先登录注册