DPlayer/demo/demo.js
2017-07-25 02:26:38 +08:00

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();