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?
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?
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.