owl carousel official website code example
Example 1: owl carousal
//default settings:
autoplay:false
autoplayTimeout:5000
autoplayHoverPause:false
Example 2: owl carousel
$('.loop').owlCarousel({
center: true,
items:2,
loop:true,
margin:10,
responsive:{
600:{
items:4
}
}
});
$('.nonloop').owlCarousel({
center: true,
items:2,
loop:false,
margin:10,
responsive:{
600:{
items:4
}
}
});