Skip to content

Instantly share code, notes, and snippets.

@2thecrow
Last active February 28, 2023 21:03
Show Gist options
  • Save 2thecrow/001d937d3fe5c7298a912cf45c4b5284 to your computer and use it in GitHub Desktop.
Save 2thecrow/001d937d3fe5c7298a912cf45c4b5284 to your computer and use it in GitHub Desktop.
Many SwiperJS sliders on page
const sliders = document.querySelectorAll('.swiper-container');
sliders.forEach((el) => {
let swiper = new Swiper(el, {
slidesPerView: 3,
spaceBetween: 10,
loop: true,
pagination: {
el: el.querySelector('.swiper-pagination'),
clickable: true,
},
navigation: {
nextEl: el.querySelector('.swiper-button-next'),
prevEl: el.querySelector('.swiper-button-prev'),
},
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment