touch-events2
v1.0.0
Published
Touch listener for browsers.
Downloads
7
Readme
touch-events2
Provides touch events to developers using Node.js to develop for browsers.
Usage
listener = touchevents([target], [events])
Examples
Basic Usage
const touchevents = require('touch-events2') // Also at window.touchevents.
// Default target is: document.body
// Default events are: ["touchstart", "touchend", "touchmove"]
var touch = touchevents()
touch.on("touchstart", function(event) {
console.log(event)
})
Custom Target
var touch = window.touchevents(document)
Custom Event List
var touch = window.touchevents(['touchcancel'])
Custom Target & Event List
var touch = window.touchevents(document, ['touchcancel'])
Tests
- Mocha
- Test functionality in Node.js
- Karma
- Using browserify, test functionality in browsers
- User Testing
- grunt user-test is set to build, serve, and open test/index.html