Skip to content

Instantly share code, notes, and snippets.

@YeomanYe
Last active December 24, 2016 04:28
Show Gist options
  • Save YeomanYe/83d5ffef4879b3cf64c867f2ae060e6c to your computer and use it in GitHub Desktop.
Save YeomanYe/83d5ffef4879b3cf64c867f2ae060e6c to your computer and use it in GitHub Desktop.
JS:requestAnimFrame
(function() {
var lastTime = 0;
var vendors = ['webkit', 'moz','ms','o'];
for(var x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) {
window.requestAnimationFrame = window[vendors[x] + 'RequestAnimationFrame'];
window.cancelAnimationFrame = window[vendors[x] + 'CancelAnimationFrame'] || // name has changed in Webkit
window[vendors[x] + 'CancelRequestAnimationFrame'];
}
if (!window.requestAnimationFrame) {
window.requestAnimationFrame = function(callback, element) {
var currTime = new Date().getTime();
//为了使得每秒产生60帧的动画
var timeToCall = Math.max(0, 16.7 - (currTime - lastTime));
var id = window.setTimeout(function() {
callback(currTime + timeToCall);
}, timeToCall);
lastTime = currTime + timeToCall;
return id;
};
}
if (!window.cancelAnimationFrame) {
window.cancelAnimationFrame = function(id) {
clearTimeout(id);
};
}
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment