Skip to content

Instantly share code, notes, and snippets.

@ikekou
Last active August 29, 2015 14:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ikekou/634ca2145d51d9761de2 to your computer and use it in GitHub Desktop.
Save ikekou/634ca2145d51d9761de2 to your computer and use it in GitHub Desktop.
[javascript] requestAnimationFrameのベンダプリフィクス対応のスニペット
(function (w, r) {
w['r'+r] = w['r'+r] || w['webkitR'+r] || w['mozR'+r] || w['msR'+r] || w['oR'+r] || function(c){ w.setTimeout(c, 1000 / 60); };
})(window, 'equestAnimationFrame');
@ikekou
Copy link
Author

ikekou commented Mar 25, 2015

jQueryで破棄されたrequestAnimationFrameとJSでのアニメーション実装で注意すること http://0-9.sakura.ne.jp/pub/lt/modest/start.html

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment