• Stars
    star
    1
  • Language
    CoffeeScript
  • License
    The Unlicense
  • Created over 12 years ago
  • Updated over 12 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Touch-events single-finger swipe-sensing jquery plugin.

Touch-events single-finger swipe-sensing jquery plugin.

Initial version is here.

This plugin is experimental. Use at your own risk.

    $(body).touchy({
      'left': function() {
        console.log('Swiped to left');
      },
      'right': function() {
        console.log('Swiped to right');
      },
      'up': function() {
        console.log('Swiped to up');
      },
      'down': function() {
        console.log('Swiped to down');
      }
    });