Skip to content

Instantly share code, notes, and snippets.

@yoshuawuyts
Forked from junosuarez/firstJank.js
Created August 16, 2016 17:12
Show Gist options
  • Save yoshuawuyts/aa83785c71149e84393a73677204059b to your computer and use it in GitHub Desktop.
Save yoshuawuyts/aa83785c71149e84393a73677204059b to your computer and use it in GitHub Desktop.
key RUM perf metric: time-to-first-jank
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