swipe-event

0.4.2 • Public • Published

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.

Dependencies (0)

    Dev Dependencies (1)

    Package Sidebar

    Install

    npm i swipe-event

    Weekly Downloads

    2

    Version

    0.4.2

    License

    MIT

    Last publish

    Collaborators

    • kt3k