jQuery(document).ready(function($) { var scroll = $(window).scrollTop(); var scrollup = $('.scroll-top'); /*------------------------------------------------ Scroll Top ------------------------------------------------*/ scrollup.click(function () { $('html, body').animate({ scrollTop: '0px' }, 800); return false; }); $(window).scroll(function () { var scroll = $(window).scrollTop(); if (scroll >= 200) { scrollup.fadeIn(); } else { scrollup.fadeOut(); } }); /*------------------------------------------------ Homepage slider ------------------------------------------------*/ var call_center_services_Slider = new Swiper(".call-center-services-swiper", { slidesPerView: 1, speed: 1000, autoplay: { delay: 5000, disableOnInteraction: false, }, pagination: { el: ".call-center-services-pagination", clickable: true, }, navigation: { nextEl: ".call-center-services-swiper-button-next", prevEl: ".call-center-services-swiper-button-prev", }, }); /*------------------------------------------------ Homepage Testimonial ------------------------------------------------*/ var call_center_services_testimonial_Slider = new Swiper(".call-center-services-testimonial-swiper", { breakpoints: { 0: { slidesPerView: 1, }, 600: { slidesPerView: 2, }, 992: { slidesPerView: 3, }, 1100: { slidesPerView: 4, } }, autoplay: { delay: 3000, disableOnInteraction: false, }, pagination: { el: ".call-center-services-testimonial-pagination", clickable: true, }, spaceBetween: 30, loop: true, navigation: { nextEl: ".call-center-services-testimonial-swiper-button-next", prevEl: ".call-center-services-testimonial-swiper-button-prev", }, }); });