Owl carousel caption mit animieren.css

ich versuche, mich Beschriftungen in owl carousel. ich bin mit der Animation.css.
Ich habe Hinzugefügt animation in Beschriftungen im Karussell, aber es funktioniert nicht für alle. Nur die ersten Folien Beschriftung animation. Hier ist mein code;

<div class="owl-carousel owl-theme">

<div class="item"><img src="http://placehold.it/900x1200">
    <div class="caption"><h1 class="animated bounce">First Caption</h1></div>
</div>

<div class="item"><img src="http://placehold.it/900x1200">
    <div class="caption"><h1 class="animated bounce">Second Caption</h1></div>
</div>

<div class="item"><img src="http://placehold.it/900x1200">
    <div class="caption"><h1 class="animated bounce">Third Caption</h1></div>
</div>

<div class="item"><img src="http://placehold.it/900x1200">
    <div class="caption"><h1 class="animated bounce">Fourth Caption</h1></div>
</div>

</div><!-- End Carousel -->

<style>
.caption {
    position: absolute;
    font-size: 1.5em;
    top: 0;
    left: 15px;
    border:1px solid;
    color:orange;
    text-shadow: 2px 2px 1px #000;
    padding-top: 60vh;
}
</style>

<script>
$(document).ready(function(){
  $('.owl-carousel').owlCarousel({
    items:1,
    loop:true,
    autoplay:true,
    autoplayTimeout:3500,
    nav:true,    
    })
});
</script>

Warte ich auf Ihre Hilfe, dass. Ich bin stecken

  • haben Sie sich überlegt relabelling Ihre .animated css .active ? wenn Sie formatieren Sie Ihren code in ein jsfiddle werden es einfacher+schneller für die Menschen zu unterstützen.
  • Ja Sie haben Recht, hier ist meine Geige jsfiddle
Schreibe einen Kommentar