Last active
August 29, 2015 14:21
-
-
Save ilkeryilmaz/602ec7a423b6ea917d50 to your computer and use it in GitHub Desktop.
Touch events
This file contains hidden or 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
//touchstart | |
//touchmove | |
//touchend | |
//touchcancel | |
//Example | |
document.addEventListener('touchmove', function(e) { | |
e.preventDefault(); | |
var touch = e.touches[0]; | |
alert(touch.pageX + " - " + touch.pageY); | |
}, false); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment