// Preloader js $(window).on('load', function () { $('.preloader').fadeOut(100); }); (function ($) { 'use strict'; // product Slider $('.product-image-slider').slick({ autoplay: false, infinite: true, arrows: false, dots: true, customPaging: function (slider, i) { var image = $(slider.$slides[i]).data('image'); return 'product-image'; } }); // Product slider $('.product-slider').slick({ infinite: true, slidesToShow: 4, slidesToScroll: 1, autoplay: true, dots: false, arrows: false, responsive: [{ breakpoint: 1024, settings: { slidesToShow: 3 } }, { breakpoint: 600, settings: { slidesToShow: 2 } }, { breakpoint: 480, settings: { slidesToShow: 1 } } ] }); })(jQuery);