When I use requestAnimationFrame to do some native supported animation within below code:
var support = {
animationFrame: window.requestAnimationFrame ||
window.mozRequestAnimationFrame ||
window.webkitRequestAnimationFrame ||
window.msRequestAnimationFrame ||
window.oRequestAnimationFrame
};
support.animationFrame(function() {}); //error
support.animationFrame.call(window, function() {}); //right
Directly call the "support.animationFrame" will make "Uncaught TypeError: Illegal invocation" in chrome! Why?
Thanks!