Dashboard sipadu mbip
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

swiper-custom.js 742B

1234567891011121314151617181920212223242526
  1. "use strict";
  2. $(document).ready(function() {
  3. setTimeout(function(){
  4. var swiper = new Swiper('.swiper-container', {
  5. pagination: '.swiper-pagination',
  6. slidesPerView: 5,
  7. paginationClickable: true,
  8. spaceBetween: 20,
  9. loop: true,
  10. breakpoints: {
  11. // when window width is <= 576px
  12. 576: {
  13. slidesPerView: 1
  14. },
  15. // when window width is <= 992px
  16. 992: {
  17. slidesPerView: 2
  18. },
  19. // when window width is <= 1200px
  20. 1200: {
  21. slidesPerView: 3
  22. }
  23. }
  24. });
  25. },350);
  26. });