There’s a good reason why animations in the browser are capped at 60fps. Most computer monitors run at 60MHz, so refreshing your animation more than that causes frames to be drawn between screen draws. Which cause jumpy animations. There’s even an experimental feature in the mix to only allow drawing between frames (read more here https://developer.mozilla.org/en/DOM/window.requestAnimationFrame).
↧