Carousel Plugin with JQuery [closed]

1

I need to put a Carousel (Slider) on a homepage, and I thought about doing it with JQuery, can someone tell me some plugin to do this, other than the bootstrap carousel?

    
asked by anonymous 17.05.2018 / 16:55

1 answer

2

Use the Slick plugin, link

Simple as follows small example:

<div class="slick-slider">
    <div>suaImagemAqui1</div>
    <div>suaImagemAqui2</div>
    <div>suaImagemAqui3</div>
  </div>

and the script:

$(document).ready(function(){
      $('.slick-slider').slick();
    });

e Can be customized with autoplay, speed, status points, arrows and various other attributes, documentation on the above link.

    
18.05.2018 / 00:36