Created
June 19, 2019 12:34
-
-
Save earthboundkid/4a904a1f6cff71f1dd425864b30c784b 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
const onAnimate = (eventType, callback) => { | |
let timeout; | |
window.addEventListener(eventType, ev => { | |
if (timeout) { | |
window.cancelAnimationFrame(timeout); | |
} | |
timeout = window.requestAnimationFrame(callback); | |
}); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment