Skip to content

Instantly share code, notes, and snippets.

@indreklasn
Last active July 7, 2018 15:58
Show Gist options
  • Save indreklasn/fbf71ac2fd4b4990c976f11890887bdb to your computer and use it in GitHub Desktop.
Save indreklasn/fbf71ac2fd4b4990c976f11890887bdb to your computer and use it in GitHub Desktop.
touch events example
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