Skip to content

Instantly share code, notes, and snippets.

@Odinodin
Created December 30, 2013 21:06
Show Gist options
  • Save Odinodin/8188135 to your computer and use it in GitHub Desktop.
Save Odinodin/8188135 to your computer and use it in GitHub Desktop.
animation frame
(def animate
"Request animation frame"
(or (.-requestAnimationFrame js/window)
(.-oRequestAnimationFrame js/window)
(.-mozRequestAnimationFrame js/window)
(.-webkitRequestAnimationFrame js/window)
(.-msRequestAnimationFrame js/window)
(fn [callback] (js/setTimeout callback 17))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment