File: /home/slfopp7cb1df/www/klasiboi.com/wp-content/themes/clothing-apparel-shop/assets/js/script.js
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 Testimonial
------------------------------------------------*/
var clothing_apparel_shop_testimonial_Slider = new Swiper(".clothing-apparel-shop-testimonial-swiper", {
breakpoints: {
0: {
slidesPerView: 1,
},
600: {
slidesPerView: 2,
},
992: {
slidesPerView: 3,
},
1100: {
slidesPerView: 4,
}
},
autoplay: {
delay: 3000,
disableOnInteraction: false,
},
pagination: {
el: ".clothing-apparel-shop-testimonial-pagination",
clickable: true,
},
spaceBetween: 30,
loop: true,
navigation: {
nextEl: ".clothing-apparel-shop-testimonial-swiper-button-next",
prevEl: ".clothing-apparel-shop-testimonial-swiper-button-prev",
},
});
});