This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ******************************************************************************************* | |
* THE UPDATED VERSION IS AVAILABLE AT | |
* https://github.com/LeCoupa/awesome-cheatsheets | |
* ******************************************************************************************* */ | |
// 0. Synopsis. | |
// http://nodejs.org/api/synopsis.html | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Demo http://codepen.io/AlexEmashev/pen/BKgQdx | |
(function ($) { | |
$.fn.swipeDetector = function (options) { | |
// States: 0 - no swipe, 1 - swipe started, 2 - swipe released | |
var swipeState = 0; | |
// Coordinates when swipe started | |
var startX = 0; | |
var startY = 0; | |
// Distance of swipe | |
var pixelOffsetX = 0; |