Owl Carousel 2 nested autoplay loop

1.1k Views Asked by At

Seems the nested carousel is working, but the inner carousel isn't triggering autoplay looping function properly which it stops after it changes to the second slide. I'm trying to make the inner carousel as autoplay looping fadeout carousel, but it just worked once, then need to refresh to restart the loop.

Don't know what's wrong with my code.

Here's my code.

jsfiddle

$('.main-carousel').owlCarousel({
loop:true,
margin:10,
nav:true,
items:1,
});

$('.fade').owlCarousel({
loop:true,
margin:10,
nav:true,
items:1,
animateOut: 'fadeOut',
autoplay:true,
autoplayTimeout:1000,
autoplayHoverPause:false
});
1

There are 1 best solutions below

1
On
$('.slider').owlCarousel({  
        animateOut: 'zoomOut',  
        nav: true, // Show next and prev buttons    
        navText: false,    
        dots: true,  
        loop: true,  
        items: 1,  
        margin: 0,  
        smartSpeed: 450,  
        autoplay: true,  
        autoplayTimeout: 5000,  
        autoplayHoverPause: true  
    });