26 lines
536 B
JavaScript
26 lines
536 B
JavaScript
(function ($) {
|
|
"use strict";
|
|
|
|
$('.testimonial-widget-one .owl-carousel').owlCarousel({
|
|
singleItem:true,
|
|
loop: true,
|
|
autoplay: true,
|
|
// rtl: true,
|
|
autoplayTimeout: 2500,
|
|
autoplayHoverPause: true,
|
|
margin: 10,
|
|
nav: false,
|
|
dots:false,
|
|
responsive: {
|
|
0: {
|
|
items: 1
|
|
},
|
|
600: {
|
|
items: 1
|
|
},
|
|
1000: {
|
|
items: 1
|
|
}
|
|
}
|
|
})
|
|
})(jQuery); |