Unsere Neuzugänge

Unsere Marken


/* WIEDERHOLUNG DER SLIDER FÜR EINEN NAHTLOSEN ÜBERGANG
*/
$(document).ready(function() { var $slider = $('.customer-logos'); // Duplicating slides dynamically to ensure infinite loop $slider.find('.slide').clone().appendTo($slider); $slider.slick({ slidesToShow: 6, slidesToScroll: 1, autoplay: true, autoplaySpeed: 1000, arrows: false, dots: false, pauseOnHover: false, infinite: true, responsive: [{ breakpoint: 768, settings: { slidesToShow: 4 } }, { breakpoint: 520, settings: { slidesToShow: 2 } }] }); });