quickappcn / issues

快应用开发问题反馈和需求征集
27 stars 2 forks source link

ontouchmove 事件在手指未滑动的时候也会触发 #106

Open jiongrui opened 4 years ago

jiongrui commented 4 years ago

相关信息

问题描述

1、预期效果: 手指不移动时不触发touchmove事件 2、实际效果: 手指未移动,touchumove事件却一直触发 image

复现步骤

 count11 = 0
  handleTouchstart (ev) {
    console.log('handleTouchstart', ev.touches)
  }
  handleTouchmove (ev) {
    if (++this.count11 === 30) {
      console.log('handleTouchmove', ev.touches)
    } else {
      console.log('handleTouchmove')
    }
  }
  handleTouchend (ev) {
    console.log('handleTouchend', ev.touches)
  }

 <view  ontouchstart='{{handleTouchstart}}' ontouchmove='{{handleTouchmove}}' ontouchend='{{handleTouchend}}' style='height: 60px'></view>

联系方式

LDbird commented 4 years ago

您好,您那边的复现方式是:手指放在组件上,没有任何动作,touchmove事件也触发了是吗? 手指没有滑动,但是手指的着力点有改变,这种情况也是会触发touchmove的; 具体问题沟通麻烦您加我下:18054264586