Как прекратить запрос анимации в JavaScript

Canceling requestAnimationFrame() #
If you assign your requestAnimationFrame() method to a variable, you can use the cancelAnimationFrame() method to cancel it before it runs. // Setup the animation var animation = window. requestAnimationFrame(function () 
Bewildered Bug