mirror of
https://github.com/sartography/spiffworkflow_website.git
synced 2025-02-22 12:28:11 +00:00
29 lines
619 B
JavaScript
29 lines
619 B
JavaScript
$(document).ready(function(){
|
|
$(".owl-carousel-testimonial").owlCarousel({
|
|
loop: true,
|
|
responsiveClass:true,
|
|
responsive:{
|
|
0:{
|
|
items:1,
|
|
nav:true
|
|
},
|
|
700:{
|
|
items:2,
|
|
nav:false
|
|
},
|
|
1100:{
|
|
items:3,
|
|
nav:false
|
|
},
|
|
}
|
|
});
|
|
$(".owl-carousel-reference").owlCarousel({
|
|
items:2,
|
|
loop:false,
|
|
margin:10,
|
|
autoplay:false,
|
|
autoplayTimeout:6000,
|
|
autoplayHoverPause:true
|
|
});
|
|
});
|