I’m trying to get this loading bar:
http://www.webfroze.com/css/loading-animation-circle-style
to repeat indefinitely.
I tried
-moz-animation:loading 1s infinite;
-webkit-animation:loading 1s infinite;
But this wont work since the animation is build up on 5 separate animated spheres which animate subsequent to one another, so setting them to repeat the infinite option messes it up
You need to add a rest in your animation, a part where nothing happens, so you can imitate delay.
css:
Demo:
http://jsfiddle.net/Vf2aq/2/