AutoPlayTimeout Owl Carousel doesn't scroll smoothly

I had a problem with autoplayTimeout smoothly scrolling on the page. It stops after it loads the first 5 images and scrolls through the next one, and it is very jerky. You can see an example here at the bottom of the page .

Here are my settings in javascript:

<script type="text/javascript">
        $(document).ready(function() {
            $("#owl-demo").owlCarousel({
                autoplay: true,     
                items: 5,
                autoplayHoverPause: true,
                autoplayTimeout: 10,
                autoplaySpeed: 1000,
                fluidSpeed:true,
                itemsDesktop : [1199,3],
                itemsDesktopSmall: [979,3],
                itemsMobile: [479,1],
                navigation: false,
                dots: false,
                loop: true
                });

        });

    </script>

I am not sure if I am using the right combination of settings.

+4
source share
1 answer

Using the smartSpeed ​​property:

$("#owl-demo").owlCarousel({ autoplay: true, smartSpeed: 2500 });
0
source

All Articles