性能监控 / 性能指标 / 性能优化html
FCP前端
白屏时间:从浏览器输入地址并回车后到页面开始有内容的时间;web
FMPapi
首屏时间:从浏览器输入地址并回车后到首屏内容渲染完毕的时间;浏览器
不须要交互 ? TTI性能优化
❓ Navigation Timing Level 2, W3C Working Draft 21 January 2020ide
https://www.w3.org/TR/navigation-timing-2/布局
✅ Navigation Timing, W3C Recommendation 17 December 2012性能
https://www.w3.org/TR/navigation-timing/flex
https://developer.mozilla.org/en-US/docs/Web/API/Navigation_timing_API
https://developer.mozilla.org/en-US/docs/Web/API/Navigation_timing_API/Using_Navigation_Timing
window.addEventListener("load", function() { let now = new Date().getTime(); let loadingTime = now - performance.timing.navigationStart; document.querySelector(".output").innerText = loadingTime + " ms"; }, false);
window.addEventListener("load", function() { let now = new Date().getTime(); let loadingTime = now - performance.timing.navigationStart; output = "Load time: " + loadingTime + " ms<br/>"; output += "Navigation type: "; switch(performance.navigation.type) { case PerformanceNavigation.TYPE_NAVIGATE: output += "Navigation"; break; case PerformanceNavigation.TYPE_RELOAD: output += "Reload"; break; case PerformanceNavigation.TYPE_BACK_FORWARD: output += "History"; break; default: output += "Unknown"; break; } output += "<br/>Redirects: " + performance.navigation.redirectCount; document.querySelector(".output").innerHTML = output; }, false);
https://developers.google.com/web/fundamentals/performance/navigation-and-resource-timing
Time To First Byte
第一个字节到达的时间
Time To First Paint
第一次绘制的时间
https://developers.google.com/web/fundamentals/glossary
Total Blocking Time
总阻塞时间
DOMContentLoaded Event
DOM 内容加载完成 事件
First Paint
首次绘制
First Contentful Paint
首次有内容的绘制
https://web.dev/first-contentful-paint
First Meaningful Paint
首次有意义的绘制
https://web.dev/first-meaningful-paint/
Largest Contentful Paint
最大内容的绘制
Time to Interactive
可交互时间
First Input Delay
首次输入延迟
Cumulative Layout Shift
累积布局移位
Speed Index
速度指数
Chrome DevTools & performance / 性能指标
https://developers.google.com/web/fundamentals/performance/user-centric-performance-metrics
https://web.dev/user-centric-performance-metrics/
https://web.dev/custom-metrics/
http://www.javashuo.com/article/p-sqxeadmt-vd.html
©xgqfrms 2012-2020
www.cnblogs.com 发布文章使用:只容许注册用户才能够访问!