animating elements sequentially in pure css3 on loop
I'm trying to animate in elements sequentially in full css3 animations. Seems the very straight forward answer is using animation delay. However I wanted this in loop, any ideas how to make the animation loop infinitely? I found this fiddle on a similar question. Basically that's the same logic but I just wanted it looped. This was the similar [question] ( https://stackoverflow.com/a/8294491/340888 ) Was using this: @-webkit-keyframes FadeIn { 0% { opacity:0; -webkit-transform:scale(.1);} 85% {opacity:1; -webkit-transform:scale(1.05);} 100% {-webkit-transform:scale(1); } } .myClass img { float