Skip to content

Instantly share code, notes, and snippets.

@kevinsimper
Created May 28, 2014 08:03
Show Gist options
  • Save kevinsimper/30fcdb0e4b817f92f2fd to your computer and use it in GitHub Desktop.
Save kevinsimper/30fcdb0e4b817f92f2fd to your computer and use it in GitHub Desktop.
FPS check
var s = document.createElement("script");
s.type = "text/javascript";
s.src = "https://rawgit.com/darsain/fpsmeter/master/dist/fpsmeter.min.js";
$("head").append(s);
var meter = new FPSMeter();
function animate(){
requestAnimationFrame(animate);
meter.tick();
}
animate();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment