Created
March 21, 2017 09:23
-
-
Save zpbx/baddcf19de9892cef236cc1875869fff to your computer and use it in GitHub Desktop.
在页面中获取两个关键指标
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
function test(cond) { | |
'use strict' | |
let data = {} | |
data.N0 = performance.timing.navigationStart | |
data.L0 = performance.timing.loadEventStart | |
data.P = window.chrome.loadTimes().firstPaintTime * 1000 | |
data.metric1 = data.P - data.N0 | |
data.metric2 = data.L0 - data.N0 | |
console.log(`${cond} | ${data.metric1} | ${data.metric2}`) | |
} | |
test('2g') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment