patashala/style/bower_components/owl.carousel/owl.custom.js
Vivek a53135a78d Added based code
Added base code to the repo
2024-02-07 20:19:28 +05:30

40 lines
933 B
JavaScript
Executable File

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
}
}
})
});