RequestAnimationFrame.js 535 B

12345678910111213141516171819202122
  1. /**
  2. * Provides requestAnimationFrame in a cross browser way.
  3. * /paulirish.com/2011/requestanimationframe-for-smart-animating/
  4. */
  5. if ( !window.requestAnimationFrame ) {
  6. window.requestAnimationFrame = ( function() {
  7. return window.webkitRequestAnimationFrame ||
  8. window.mozRequestAnimationFrame ||
  9. window.oRequestAnimationFrame ||
  10. window.msRequestAnimationFrame ||
  11. function( /* function FrameRequestCallback */ callback, /* DOMElement Element */ element ) {
  12. window.setTimeout( callback, 1000 / 60 );
  13. };
  14. } )();
  15. }