Página de descarga:
https://daneden.github.io/animate.css/
<h1>Hola, ¿Qué tal?</h1>
<input type="button" class="btn btn-success" value="Animar" id="animar">
<script>
$('#animar').click(function () {
$('h1').addClass("rubberBand").addClass("animated")
.one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend',
function (e) {
//Quitamos las clases al acabar la animación
$('h1').removeClass();
});
});
</script>