Is it possible to repeat this CSS3 Animation so once it has finished it continues? Any help is much appreciated.
jsFiddle
infinite. The animation will repeat forever. <number> The number of times the animation will repeat; this is 1 by default. You may specify non-integer values to play part of an animation cycle: for example, 0.5 will play half of the animation cycle.
The animation-iteration-count property in CSS is used to specify the number of times the animation will be repeated. It can specify as infinite to repeat the animation indefinitely.
Animation iteration count is what you are looking for.
animation-iteration-count: infinite;
-moz-animation-iteration-count: infinite;
-webkit-animation-iteration-count: infinite;
-o-animation-iteration-count: infinite;
updated fiddle: http://jsfiddle.net/HRP4n/1/
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With