Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 471 Bytes

wx.CN.md

File metadata and controls

23 lines (19 loc) · 471 Bytes

支持微信小程序

由于小程序中没有 dom 元素的概念, 所以我们需要通过catchEvent方法手动接收touch事件的事件对象来进行识别

<view
  @touchstart="at.catchEvent"
  @touchmove="at.catchEvent"
  @touchend="at.catchEvent"
  @touchcancel="at.catchEvent">
</view>
const at = new AnyTouch()
{
    onload(){
        at.on('press', onPress);
    }
}

🚀 返回目录