Created
July 20, 2016 21:00
-
-
Save hunk/662b5d41831eee153d52a75f29c99fbf to your computer and use it in GitHub Desktop.
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
<html> | |
<script type="text/javascript"> | |
window.addEventListener('load', function(){ | |
document.body.addEventListener('touchstart', function(e){ | |
var el = document.getElementById("outside"); | |
el.innerHTML = "move in " + e.changedTouches[0].pageX; | |
}, false); | |
}); | |
</script> | |
<style> | |
#outside { font-size: 80px; } | |
</style> | |
<body> | |
<div> | |
<p id="outside"> | |
hola | |
</p> | |
</div> | |
</body> | |
<html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment