Skip to content

Instantly share code, notes, and snippets.

@pomber
Created May 29, 2020 18:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save pomber/24b8286282ec10cc015a591d9f237b26 to your computer and use it in GitHub Desktop.
Save pomber/24b8286282ec10cc015a591d9f237b26 to your computer and use it in GitHub Desktop.
function slowmo(rate = 10) {
window._raf = window.requestAnimationFrame
window.requestAnimationFrame = f => window._raf(t => f(t/rate))
Date._now = Date.now
Date.now = () => Date._now() / rate
performance._now = performance.now
performance.now = () => performance._now()/rate
}
slowmo()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment