I've been using animate.css to add animations to my elements, and here's a snippet of the code I'm working with:
<button class='animated infinite pulse tada'>1</button>
<button class='animated infinite pulse tada'>2</button>
<button class='animated infinite pulse tada'>3</button>
<button class='animated infinite pulse tada'>4</button>
<button class='animated infinite pulse tada'>5</button>
Check out the animation on JSFIDDLE
I'm trying to figure out how to animate these buttons one by one in sequence and then have them all animate together before repeating the process infinitely. I saw in the github documentation that you can use Jquery .one function to detect when an animation ends, but I'm not sure how to implement it to achieve what I want.