Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use requestAnimationFrame?

I'm new to animation, but I have recently created an animation using setTimeout. The FPS was too low, so I found a solution to use requestAnimationFrame, described in this link.

So far, my code is:

//shim layer with setTimeout fallback     window.requestAnimFrame = (function(){         return               window.requestAnimationFrame       ||              window.webkitRequestAnimationFrame ||              window.mozRequestAnimationFrame    ||              window.oRequestAnimationFrame      ||              window.msRequestAnimationFrame     ||              function(/* function */ callback){                 window.setTimeout(callback, 1000 / 60);             };     })();     (function animloop(){         //Get metrics         var leftCurveEndX = finalLeft - initialLeft;         var leftCurveEndY = finalTop + finalHeight - initialTop;         var rightCurveEndX = finalLeft + finalWidth - initialLeft - initialWidth;         var rightCurveEndY = leftCurveEndY;          chopElement(0, 0, 0, 0, leftCurveEndX, leftCurveEndY, rightCurveEndX, rightCurveEndY);//Creates a new frame          requestAnimFrame(animloop);     })(); 

This stops during the first frame. I have a callback function requestAnimFrame(animloop); in the chopElement function.

Also, is there a more thorough guide to using this API?

like image 260
einstein Avatar asked Apr 09 '11 14:04

einstein


People also ask

When should you use requestAnimationFrame?

requestAnimationFrame() is 1 shot. You should call this method whenever you're ready to update your animation onscreen. This will request that your animation function be called before the browser performs the next repaint.

How does react use requestAnimationFrame?

The requestAnimationFrame method returns an integer ID which can be used to cancel the queued request using the cancelAnimationFrame(id) method. The animation callback function can also accept a timestamp value, which is the time elapsed in milliseconds since the web page was loaded.

Is requestAnimationFrame efficient?

The requestAnimationFrame() API provides an efficient way to make animations in JavaScript. The callback function of the method is called by the browser before the next repaint on each frame.


2 Answers

Warning! This question is not about the best way to shim requestAnimFrame. If you are looking for that, move on to any other answer on this page.


You got tricked by automatic semicolon insertion. Try this:

window.requestAnimFrame = function(){     return (         window.requestAnimationFrame       ||          window.webkitRequestAnimationFrame ||          window.mozRequestAnimationFrame    ||          window.oRequestAnimationFrame      ||          window.msRequestAnimationFrame     ||          function(/* function */ callback){             window.setTimeout(callback, 1000 / 60);         }     ); }(); 

javascript automatically puts a semicolon behind your return statement. It does this because it is followed by a newline and the next line is a valid expression. In fact it gets translated to:

return; window.requestAnimationFrame       ||  window.webkitRequestAnimationFrame ||  window.mozRequestAnimationFrame    ||  window.oRequestAnimationFrame      ||  window.msRequestAnimationFrame     ||  function(/* function */ callback){     window.setTimeout(callback, 1000 / 60); }; 

This code returns undefined and never executes the code behind the return statement. So window.requestAnimFrame is undefined. When you call it in animloop, the javascript produces an error and stops execution. You can solve the problem by enclosing the expression in parentheses.

May I recommend the Chrome developer tools or firebug to inspect javascript execution. With these tools you would have seen the error. You should go about debugging it as follows (I'm assuming Chrome):

  1. Execute the code (it produces unexpected results)
  2. Open the developer tools (right click -> Inspect Element) You will see a red x in the status bar at the right (this means there is an error in the execution)
  3. Open the console tab
  4. You will see
    Uncaught TypeError: Property 'requestAnimFrame' of object [object DOMWindow] is not a function
  5. Type in the console: window.requestAnimFrame and press enter, you will see it is undefined. By now you know that the problem is in fact unrelated to requestAnimationFrame and that you should concentrate on the first part of your code.
  6. Now it is a matter of narrowing down the code up to the point where it returns something. This is the difficult part and if you still don't find it at this point you might want to turn to the internet for more help.

Also, watch this video for some good practices in writing javascript, He also mentions the evil automatic semicolon insertion.

like image 134
Jan Avatar answered Oct 06 '22 23:10

Jan


 /*   Provides requestAnimationFrame in a cross browser way.   http://paulirish.com/2011/requestanimationframe-for-smart-animating/  */  if (!window.requestAnimationFrame) {      window.requestAnimationFrame = (function() {          return window.webkitRequestAnimationFrame ||             window.mozRequestAnimationFrame || // comment out if FF4 is slow (it caps framerate at ~30fps: https://bugzilla.mozilla.org/show_bug.cgi?id=630127)         window.oRequestAnimationFrame ||             window.msRequestAnimationFrame ||             function( /* function FrameRequestCallback */ callback, /* DOMElement Element */ element) {                  window.setTimeout(callback, 1000 / 60);          };      })();  }  animate();  function animate() {     requestAnimationFrame(animate);     draw(); }  function draw() {     // Put your code here } 

Have a look at the below jsfiddle example; It illustrates clearly what I mean;

http://jsfiddle.net/XQpzU/4358/light/

Hope this helps!

like image 21
Gokhan Tank Avatar answered Oct 06 '22 22:10

Gokhan Tank