How do I stop or pause the request animationFrame() ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

How do I stop or pause the request animationFrame() ?

I want to pause an animation frame when a condition tests true. So far I haven't been able to do so with the cancelAnimationFrame(). this is what I have tried so far function start(){ ..... if(condition){ //i don't know what next to do to stop/pause the animation } requestAnimationFrame(start) }

14th May 2019, 1:17 AM
Dlite
Dlite - avatar
1 Answer
+ 2
All you need to do is not call `requestAnimationFrame` to stop the animation. let stopped = false; function start() { // do stuff ... if(!stopped) requestAnimationFrame(start); } Or if you want to be fancy about it, you can pack it in a function: https://code.sololearn.com/WC2tB5i2QCQy/?ref=app
14th May 2019, 1:53 AM
Schindlabua
Schindlabua - avatar