So, how do we use it?
Link your HTML with this Animate.css.
Then make some HTML element. For Example h1.
<h1>Bounce</h1>
Next, we need to add an event to trigger that animation. So we will use pretty simple jQuery here.
$("h1").on("click",function(){
$(this).addClass("animated bounce");
});
So, when we click the h1 element, it would has classes of animated and bounce. And, with those classes, the h1 element will bounce.
The class "animated" is necessary but class "bounce" could be changed with the name of animation you'd like to use, for example "swing".
See the demo here.
There are other animations, you could check them by yourself here http://daneden.github.io/animate.css/.