Hacker News new | ask | show | jobs
by Kiro 4369 days ago
> Canvas doesn't support animation -- you have to code it yourself.

What do you mean?

1 comments

The obvious. That canvas is just a set of pixels with colors (a bitmap image). To get animation, you have to explicitly change them every X milliseconds.

Whereas SVG has actual objects, that you can apply items like animateTransform, animateMotion etc to them directly, in a declarative style.

Ok, thanks. I didn't know that. I thought you had to clear/redraw the SVG for animation as well.