I'm aware of this question: how do you animate an svgpath. And the provided answer has helped me but when the path is broken with a "move" the animation goes wrong. It starts parallel after each move. See here. Is there a way to prevent this behaviour and have the animation perform sequencely?
Asked
Active
Viewed 6,042 times
1 Answers
7
You can give an id to one animate element and then do <id>
.end to start the next when the first finishes. Here's an example

Robert Longson
- 118,664
- 26
- 252
- 242
-
Thanks for your answer, it was not really wat I was hoping for. Now I have to split up the paths, maintain the positions etc. But i guess it is doable. Your explanation for the animate start and end was very useful! Thanks again. – dr jerry Feb 01 '12 at 09:21