$('button').addClass('animated bounce');
$('.well').addClass('animated shake');
$('#target3').addClass('fadeOut');
Can you explain the purpose of the animated class? Removing the "animated" class prevents the button from bouncing and the well from shaking. Is the "animated" class associated with Bootstrap or jQuery?
I am new to coding so apologies if my question seems basic.