Skip to content

Instantly share code, notes, and snippets.

@Zizzamia
Last active March 13, 2018 04:48
Show Gist options
  • Save Zizzamia/6132d85489713af539ddc4b38a0f7b00 to your computer and use it in GitHub Desktop.
Save Zizzamia/6132d85489713af539ddc4b38a0f7b00 to your computer and use it in GitHub Desktop.
First (Contentful) Paint
const perfObserver = new PerformanceObserver((performanceEntryList) => {
for (const performanceEntry of performanceEntryList.getEntries()) {
console.log(performanceEntry.name); // 'first-paint' or 'first-contentful-paint'
console.log(performanceEntry.startTime); // DOMHighResTimeStamp
}
});
perfObserver.observe({ entryTypes: ["paint"] });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment