$('#btn_color').on('click', function(){
if($('h1').hasClass('bounceInUp')){
$('h1').removeClass('bounceInUp');
$('h1').addClass('tada');
}else if($('h1').hasClass('tada')){
$('h1').removeClass('tada');
$('h1').addClass('tada');
}
});
When I load my page, the 'bounceInUp' class is added to my h1
.
But I want to play a second animation on click by adding the 'tada' class.
The problem is the animation plays only for the first click. Is there a way to "reload" the animation when the 'tada' class is added again and again and again?
I'm using this to animate my text using this: http://daneden.github.io/animate.css/
You can attach single listener of animationend
event to remove animation classes when animation ends
$(document).on('click', '#btn_color', function (e) {
$('h1').one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', function (e) {
$('h1').removeClass('animated bounceInUp');
});
$('h1').removeClass('animated bounceInUp').addClass('animated bounceInUp');
});