main.js 402 B

123456789101112131415161718192021
  1. const swiper = new Swiper('.swiper-container', {
  2. // Optional parameters
  3. // direction: 'vertical',
  4. loop: true,
  5. // If we need pagination
  6. pagination: {
  7. el: '.swiper-pagination',
  8. },
  9. // Navigation arrows
  10. navigation: {
  11. nextEl: '.swiper-button-next',
  12. prevEl: '.swiper-button-prev',
  13. },
  14. // And if we need scrollbar
  15. // scrollbar: {
  16. // el: '.swiper-scrollbar',
  17. // },
  18. });