0.4.2 • Published 8 years ago

swipe-event v0.4.2

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

swipe-event v0.4.2

Build Status

Simple swipe event on dom

Usage

Load script:

html

Bind events:

var dom = getDom();

var swipe = new SwipeCross({elm: dom}); swipe.bindEvents();

You'll get `swipeup`, `swipeleft`, `swiperight`, `swipedown` events when the specified dom are swiped:

// you can handle the following events dom.addEventListener('swipeup', function () {...}, false); dom.addEventListener('swipeleft', function () {...}, false); dom.addEventListener('swiperight', function () {...}, false); dom.addEventListener('swipedown', function () {...}, false);

You can unbind events when it become unnecessary:

swipe.unbindEvents();

If you have jquery loaded, you can bind events through jquery object:

$('#swipe').swipeCross();

$('#swipe').on('swipeup', function () {...}); $('#swipe').on('swipeleft', function () {...}); $('#swipe').on('swiperight', function () {...}); $('#swipe').on('swipedown', function () {...});

...

$('#swipe').swipeCrossUnbind();

# History

- 2014-11-04   v0.3.1    iOS8 Safari support.