Skip to content

Instantly share code, notes, and snippets.

@renatosousafilho
Created April 13, 2013 17:16
Show Gist options
  • Save renatosousafilho/5379250 to your computer and use it in GitHub Desktop.
Save renatosousafilho/5379250 to your computer and use it in GitHub Desktop.
$( document ).on("pageinit", function() {
var startX = 0;
document.addEventListener('touchstart', function(event) {
startX = event.touches[0].pageX;
}, false);
document.addEventListener('touchmove', function(event) {
event.preventDefault();
var distX = startX - event.touches[0].pageX;
console.log(distX);
}, false);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment