Automatic responsive image scrolling carousel

4
This article helps you to create automatic responsive image scrolling  carousel. This is really very simple jquery plugin. This is helps the web developers to display the client list to the website. The below script used for carousel and responsive

<script type=”text/javascript”>
    $(document).on(‘ready’, function() {
$(‘.autoplay’).slick({
  slidesToShow: 3,
  slidesToScroll: 1,
  autoplay: true,
  autoplaySpeed: 2000,
});
      $(“.center”).slick({
        dots: true,
        infinite: true,
        centerMode: true,
        slidesToShow: 3,
        slidesToScroll: 3
      });
      $(“.variable”).slick({
        dots: true,
        infinite: true,
        variableWidth: true
      });
    });


$(‘.responsive’).slick({
  dots: false,
  infinite: true,
  speed: 300,
  slidesToShow: 4,
  slidesToScroll: 1,
  autoplay: true,
  autoplaySpeed: 2000,
  responsive: [
    {
      breakpoint: 1024,
      settings: {
        slidesToShow: 3,
        slidesToScroll: 3,
        infinite: true,
        dots: true
      }
    },
    {
      breakpoint: 600,
      settings: {
        slidesToShow: 2,
        slidesToScroll: 2
      }
    },
    {
      breakpoint: 480,
      settings: {
        slidesToShow: 1,
        slidesToScroll: 1
      }
    }
  ]
});
  </script>

Leave a Reply

Your email address will not be published. Required fields are marked *

Close
Your custom text © Copyright 2026. All rights reserved.
Close