Created
May 28, 2014 08:03
-
-
Save kevinsimper/30fcdb0e4b817f92f2fd to your computer and use it in GitHub Desktop.
FPS check
This file contains hidden or 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
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