I am currently using Firefox version 33.0 on Ubuntu operating system version 14.04. I have a website running locally (localhost) which includes a bootstrap 3 carousel. I have added the "animated pulse" class from animate.min.css to the images inside the "item" div, and "animated fadeinleft" class to the carousel caption.
<div class="item">
<img src="images/2.jpg" class="img-responsive animated pulse">
<div class="container">
<div class="carousel-caption">
<h1 class="animated fadeinleft">Another example headline.</h1>
<p class="animated fadeinright">Cras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Nullam id dolor id nibh ultricies vehicula ut id elit.</p>
</div>
</div>
</div>
There are a total of 3 slides in the carousel. The initial appearance of each slide includes the specified animation effects, but subsequent appearances do not show any effects, particularly when viewed in Firefox browser. Interestingly, it works as expected in Chrome version 38.0.2125.104. Any suggestions on how to resolve this issue would be greatly appreciated.