Animate.css
by Dan Shahin
HTML
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/animate.css/3.1.1/animate.css">
<h1 id="test">hey now</h1>
JavaScript
var classes = 'animated bounceOutRight';
$('#test').click(function () {
$el = $(this);
$el.addClass(classes);
setTimeout(function () {
$el.removeClass(classes)
}, 1000);
});