3

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?

Community
  • 1
  • 1
dr jerry
  • 9,768
  • 24
  • 79
  • 122

1 Answers1

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