92df3b2262
This reverts commit d8e4536bab
.
24 lines
446 B
JavaScript
Executable File
24 lines
446 B
JavaScript
Executable File
// main script
|
|
(function () {
|
|
"use strict";
|
|
|
|
// ####################### Testimonial Slider #########################
|
|
new Swiper(".testimonial-slider", {
|
|
spaceBetween: 24,
|
|
loop: true,
|
|
pagination: {
|
|
el: ".testimonial-slider-pagination",
|
|
type: "bullets",
|
|
clickable: true,
|
|
},
|
|
breakpoints: {
|
|
768: {
|
|
slidesPerView: 2,
|
|
},
|
|
992: {
|
|
slidesPerView: 3,
|
|
},
|
|
},
|
|
});
|
|
})();
|