2.0.7 • Published 5 years ago

@gtoio/v-finger-mk42 v2.0.7

Weekly downloads
5
License
ISC
Repository
-
Last release
5 years ago

A fork of v-finger-mk42 - ssshooter

Use AlloyFinger v0.1.10
1.0.4 add transform.js
1.0.5 fixed "toJSON" is not defined
1.0.6 performance element cache
1.0.7 use babel 2.0.3 compatible with PC 2.0.4 compatible with macOS

v-finger

<img style="position:absolute;width: 100%;"
      v-transform
      v-finger:pinch="handlePinch"
      v-finger:doubleTap="handleDoubleTap"
      v-finger:multipointStart="handleMultipointStart"
      v-finger:pressMove="handlePressMove"
      v-finger:touchEnd="handleTouchEnd"
      :src="src">
...
handleXXX(e, el) {
    console.log('event',e)
    console.log('element',el)
    console.log("for pinch" + e.zoom)
    console.log("for pressMove" + e.deltaX + ' ' + e.deltaY);
    console.log("for swipe" + e.direction);
}
...