Skip to content
Snippets Groups Projects
custom_slick.js 261 B
Newer Older
//initialize
$(document).ready(function(){
    $('.slick-carousel').slick({
    infinite: true,
    slidesToShow: 1,
    adaptiveHeight: true,
    autoplay: true,
    autoplaySpeed: 2000,
    dots: false,
    prevArrow: false,
    nextArrow: false
    });
  });