Skip to content

peakchen90/single-gesture

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

single-gesture

DEMO

https://peakchen90.github.io/single-gesture/

安装

npm install --save single-gesture
# 或者在浏览器中引用 /dist/gesture.js 文件

浏览器兼容性

支持 IE9 及以上浏览器,移动端浏览器

使用示例

var Gesture = require('single-gesture')

var el = document.getElementById('example')
new Gesture(el).ondrag(function(e){
  console.log(e.gesture)
})
// e 包含了原生的 mousemove 事件对象,并加上了 gesture 属性