Skip to content
Advertisement

Animating multiple circles in a canvas

I’m trying to make an animation inside a canvas: here, a numbered circle must be drawn and move from left to right one single time, disappearing as soon as it reaches the end of animation.

For now I managed to animate it in loop, but I need to animate at the same time (or with a set delay) multiple numbered circles, strating in different rows (changing y position) so they wont overlap.

Any idea how can I manage this? my JS code is the following:

JavaScript
JavaScript

Advertisement

Answer

Here is a solution which doesn’t use classes as such and separates the animation logic from the updating – which can be useful if you want more precise control over timing.

JavaScript
JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement