Scheduled maintenance - Thursday, July 12 at 5:00 PM EDT
We expect this update to take about an hour. Access to this website will be unavailable during this time.
– Run the code snippet above on any page with animations or scrolling to see how your browser handles the load.
requestAnimationFrame(measureFPS);
let lastTimestamp = 0; let frameCount = 0; function measureFPS(now) frameCount++; if (now - lastTimestamp >= 1000) let fps = frameCount; console.log( FPS: $fps ); frameCount = 0; lastTimestamp = now; www.browserfps
BrowserFPS is a lightweight, browser-based tool (or conceptual benchmark) designed to measure and display real-time frames-per-second (FPS) performance of web animations, WebGL graphics, CSS transitions, and general browser rendering. – Run the code snippet above on any