Last active
July 7, 2018 15:58
-
-
Save indreklasn/fbf71ac2fd4b4990c976f11890887bdb to your computer and use it in GitHub Desktop.
touch events example
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
div.addEventListener('mousemove', (e) => { console.log(e) }); | |
div.addEventListener('touchmove', (e) => { console.log(e) }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment