Skip to content

Instantly share code, notes, and snippets.

@Farmatique
Created November 19, 2019 10:25
Show Gist options
  • Save Farmatique/d3c2c525602068a4567b339ba9451ddb to your computer and use it in GitHub Desktop.
Save Farmatique/d3c2c525602068a4567b339ba9451ddb to your computer and use it in GitHub Desktop.
Check if touch slide up or down
var ts;
$(document).bind('touchstart', function(e) {
ts = e.originalEvent.touches[0].clientY;
});
$(document).bind('touchmove', function(e) {
var te = e.originalEvent.changedTouches[0].clientY;
if (ts > te) {
console.log('down');
} else {
console.log('up');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment