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.
source
share