You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bazarr/static/plugins/owl.carousel/owl.custom.js

40 lines
933 B

jQuery(document).ready(function($) {
//owl carousel
$("#owl-demo").owlCarousel({
navigation : true, // Show next and prev buttons
slideSpeed : 300,
paginationSpeed : 400,
//singleItem:true
// "singleItem:true" is a shortcut for:
items : 1,
// itemsDesktop : false,
// itemsDesktopSmall : false,
// itemsTablet: false,
// itemsMobile : false
});
$('#owl-demo2').owlCarousel({
margin:20,
nav:true,
autoplay:true,
responsive:{
0:{
items:1
},
480:{
items:2
},
700:{
items:4
},
1000:{
items:3
},
1100:{
items:5
}
}
})
});