欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

前端性能统计-首屏时间,白屏时间,用户可操作时间,总下载时间

程序员文章站 2023-02-21 08:26:30
参考网址:https://segmentfault.com/a/1190000005869953; 注意问题的回复: 建议看一看AlloyTeam的这篇也讲performance的,使用 performance.now() 精确计算程序执行时间performance.now() 与 Date.now ......

参考网址:https://segmentfault.com/a/1190000005869953;

 

注意问题的回复:

建议看一看alloyteam的也讲performance的,使用 performance.now() 精确计算程序执行时间
performance.now() 与 date.now() 不同的是,返回了以微秒(百万分之一秒)为单位的时间,更加精准。
并且与 date.now() 会受系统程序执行阻塞的影响不同,performance.now() 的时间是以恒定速率递增的,不受系统时间的影响(系统时间可被人为或软件调整)。
注意 date.now() 输出的是 unix 时间,即距离 1970 的时间,而 performance.now() 输出的是相对于 performance.timing.navigationstart(页面初始化) 的时间。
使用 date.now() 的差值并非绝对精确,因为计算时间时受系统限制(可能阻塞)。但使用 performance.now() 的差值,并不影响我们计算程序执行的精确时间。

 

performance为h5新增的对象,可以统计网站的前端性能