Created
August 16, 2016 17:05
-
-
Save junosuarez/ccef635056fc84f5452f36f8eb6681db to your computer and use it in GitHub Desktop.
key RUM perf metric: time-to-first-jank
This file contains 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
if (window.requestAnimationFrame) { | |
function checkForJank () { // eslint-disable-line no-inner-delcarations | |
const frameStart = Date.now() | |
window.requestAnimationFrame(() => { | |
const frameDuration = Date.now() - frameStart | |
if (frameDuration > 17) { | |
Perf.log(FirstJank) | |
} else { | |
checkForJank() | |
} | |
}) | |
} | |
checkForJank() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
via https://twitter.com/rauchg/status/765405512401756163