Sliders & Carousels

Slick Slider

All sliders and carousels based on Slick Slider. More information can be found here: https://kenwheeler.github.io/slick/

$(".testi_slider").slick({
  slidesToShow: 1,
  slidesToScroll: 1,
  autoplay: true,
  autoplaySpeed: 4000,
  dots: false,
  arrows: true,
  responsive: [
    {
      breakpoint: 768,
      settings: {
        arrows: false,
      },
    },
    {
      breakpoint: 576,
      settings: {
        arrows: false,
      },
    },
  ],
});

Last updated