animate.css

https://github.com/daneden/animate.css

HTML

<link rel="stylesheet" href="https://rawgit.com/daneden/animate.css/master/animate.min.css">
<h1 class="animated slower bounce infinite"></h1>

JavaScript

$('#doit').click(function(){
    $('#yourElement').one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', doSomething);
    $('#yourElement').removeClass().addClass('animated bounceOutLeft');
});
function doSomething() {
    $('#yourElement').removeClass().addClass('animated bounceInLeft');
}

$('#pulse').click(function(){
    $('#yourElement').addClass('animated pulse');
});