版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

11 lines
467 B

  1. import env from '../core/env.js';
  2. var requestAnimationFrame;
  3. requestAnimationFrame = (env.hasGlobalWindow
  4. && ((window.requestAnimationFrame && window.requestAnimationFrame.bind(window))
  5. || (window.msRequestAnimationFrame && window.msRequestAnimationFrame.bind(window))
  6. || window.mozRequestAnimationFrame
  7. || window.webkitRequestAnimationFrame)) || function (func) {
  8. return setTimeout(func, 16);
  9. };
  10. export default requestAnimationFrame;