Created
January 7, 2020 05:53
-
-
Save azl397985856/d33a2a3ba6493843777e8fa5775db057 to your computer and use it in GitHub Desktop.
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
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