I have sequence of animationTransform
:
<animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0" to="30" begin="0s" dur="0.4s" fill="freeze"/>
<animateTransform attributeName="transform" attributeType="XML" type="rotate" from="30" to="0" begin="0.4s" dur="0.4s" fill="freeze"/>
If it possible to loop this sequence without using script?
I can set individual animation to loop by using repeatCount="indefinite"
by I want to loop the whole sequence in order.
You can also just loop within a single
animateTransform
by providing avalues
attribute with a semi-colon separated list:Here's an example (checked in Firefox 4.0 and Chrome).
Figured it out already. Solution for those who are interested:
it's also possible to add/subtract (milli)seconds: