In my experience with sliders, I really like swiper slider
It's really easy and simple to use. You have an HTML layout:
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide"><!-- What ever you want here - Slide 1 --></div>
<div class="swiper-slide"><!-- Slide 2 --></div>
... <!-- And so on… -->
</div>
<!-- Add Pagination -->
<div class="swiper-pagination swiper-pagination-white"></div>
<!-- Add Arrows -->
<div class="swiper-button-next swiper-button-white"></div>
<div class="swiper-button-prev swiper-button-white"></div>
</div>
And the javascript has some options
var swiper = new Swiper('.swiper-container', {
pagination: '.swiper-pagination',
paginationClickable: true,
nextButton: '.swiper-button-next',
prevButton: '.swiper-button-prev',
spaceBetween: 10,
centeredSlides: true,
slidesPerView: 3
});
And they also have a lot of working examples, so you shouldn't have problems using swiper slider.
JSFiddle live example here
Please notice that you need to include swiper.min.css
, swiper.min.js
and a little css
to make it work.
I have used Instagram integrations with Wordpress using The Instagram Feed plugin but never with something else, however, this javascript plugin looks nice but haven't tested it yet.