Skip to content

Instantly share code, notes, and snippets.

@azl397985856
Created January 7, 2020 05:53
Show Gist options
  • Save azl397985856/d33a2a3ba6493843777e8fa5775db057 to your computer and use it in GitHub Desktop.
Save azl397985856/d33a2a3ba6493843777e8fa5775db057 to your computer and use it in GitHub Desktop.
window.addEventListener('pointermove', event => {
const events = event.getCoalescedEvents();
for (let event of events) {
const x = event.pageX;
const y = event.pageY;
// draw a line using x and y coordinates.
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment