mirror of
https://github.com/DIYgod/DPlayer
synced 2024-11-22 18:56:54 +00:00
14 lines
357 B
JavaScript
14 lines
357 B
JavaScript
// stats.js: JavaScript Performance Monitor
|
|
const stats = new Stats();
|
|
stats.showPanel(0); // 0: fps, 1: ms, 2: mb, 3+: custom
|
|
document.body.appendChild(stats.dom);
|
|
function animate () {
|
|
stats.begin();
|
|
// monitored code goes here
|
|
stats.end();
|
|
|
|
requestAnimationFrame(animate);
|
|
}
|
|
requestAnimationFrame(animate);
|
|
|
|
hljs.initHighlightingOnLoad(); |