Skip to content

Instantly share code, notes, and snippets.

@rwaldron
Last active March 1, 2018 10:04
Show Gist options
  • Star 12 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save rwaldron/1058681 to your computer and use it in GitHub Desktop.
Save rwaldron/1058681 to your computer and use it in GitHub Desktop.
requestAnimationFrame, browser prefix detection
var rAF = "equestAnimationFrame";
window["r"+rAF] = window["r"+rAF] ||
window["webkitR"+rAF] ||
window["mozR"+rAF] ||
window["msR"+rAF] ||
window["oR"+rAF];
// A list
[ "r", "webkitR", "mozR", "msR", "oR", "" ].join( rAF + "," ).split( "," )
// Best one yet:
[ "r", "webkitR", "mozR", "msR", "oR" ].reduce(function( p, v ) {
return window[ v + p ] || p;
}, "equestAnimationFrame");
// Just the prefix
var prefix = [ "r", "webkitR", "mozR", "msR", "oR" ].reduce(function( p, v ) {
return (window[ v + p ] && v.slice(0, -1)) || p;
}, "equestAnimationFrame");
// Polyfills...
// requestAnimationFrame (from requestAnimationFrame)
// cancelAnimationFrame (from cancelAnimationFrame or cancelRequestAnimationFrame)
(function(window) {
var time, can, raf, pfx;
time = 0;
can = "Cancel";
raf = "RequestAnimationFrame";
pfx = ["r", "webkitR", "mozR", "msR", "oR"].reduce(function(p, v) {
return (window[v + p] && v.slice(0, -1)) || p;
}, raf.slice(1));
window.requestAnimationFrame = window[pfx + raf] || function(callback, element) {
var now, callAt;
now = +new Date();
callAt = Math.max(0, 16 - (now - time));
time = now + callAt;
return setTimeout(function() {
callback(time);
}, callAt);
};
window.cancelAnimationFrame = window[pfx + can + raf] ||
window[pfx + raf.replace(raf.slice(0, 7), can)] || function(id) {
clearTimeout(id);
};
}(this));
["r","webkitR","mozR","msR","oR"].reduce(function(p, v) { return window[v + p] || p; }, "equestAnimationFrame");
// Alternate approach ideas
var suffix = "equestAnimationFrame",
rAF = [ "r", "webkitR", "mozR", "msR", "oR" ].filter(function( val ) {
return val + suffix in window;
})[ 0 ] + suffix;
/*
var suffix="equestAnimationFrame",rAF=["r","webkitR","mozR","msR","oR"].filter(function(a){return a+suffix in window})[0]+suffix;
Original Size: 179 bytes (164 bytes gzipped)
Compiled Size: 129 bytes (131 bytes gzipped)
Saved 27.93% off the original size (20.12% off the gzipped size)
*/
var prefix = function(window) {
var raf = "RequestAnimationFrame",
idx;
for (var prop in window) {
idx = prop.indexOf(raf);
if (idx > -1) {
return prop.slice(0, idx);
}
}
return null;
}(this);
/*
var prefix=function(c){var a,b;for(b in c)if(a=b.indexOf("equestAnimationFrame"),a>-1)return b.slice(0,a-1);return null}(this);
Original Size: 232 bytes (184 bytes gzipped)
Compiled Size: 127 bytes (130 bytes gzipped)
Saved 45.26% off the original size (29.35% off the gzipped size)
*/
console.log(
prefix
);
@arxpoetica
Copy link

"Best " + ["s","webkitS","mozS","msS","oS"].reduce(function(p, v) { return window[v + p] || p; }, "him yet");

@beige90
Copy link

beige90 commented Nov 5, 2014

["r","webkitR","mozR","msR","oR"].reduce(function(p, v) { return window[v + p] || p; }, "equestAnimationFrame");

This trick is awesome.

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