1
I need to put a Carousel(Slider) on a homepage, and I thought to do this with Jquery, someone can tell me some plugin to do this, without it being the bootstrap Carousel?
1
I need to put a Carousel(Slider) on a homepage, and I thought to do this with Jquery, someone can tell me some plugin to do this, without it being the bootstrap Carousel?
2
Use the Slick plugin, http://kenwheeler.github.io/slick/
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();
});
and can be customized with autoplay, speed, status points, arrows and various other attributes, documentation on the link cited above.
Browser other questions tagged javascript jquery
You are not signed in. Login or sign up in order to post.
I always use https://owlcarousel2.github.io/OwlCarousel2/ in my projects.
– Aryana Valcanaia