I'm looking to create a setup that can play on repeat, but I'm not very familiar with jQuery. Can anyone lend a hand with this?
$('.title1').fadeIn('fast', function() {
$('div').addClass('animated pulse');
});
$('div').one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend
animationend', function() {
$('.title1').fadeOut(2000);
});