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