BCB Bank static website
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

33 rader
582 B

  1. var owl = $('.owl-team');
  2. owl.owlCarousel({
  3. loop: true,
  4. margin: 0,
  5. autoplay: true,
  6. autoplayTimeout: 3000,
  7. autoplayHoverPause: true,
  8. responsiveClass: true,
  9. responsive: {
  10. 0: {
  11. items: 1
  12. },
  13. 600: {
  14. items: 1
  15. },
  16. 1000: {
  17. items: 4,
  18. }
  19. }
  20. });
  21. var team_carousel_Btn = $('.owl-team');
  22. owl.owlCarousel();
  23. $('#team-carousel-left-btn').click(function () {
  24. "use strict";
  25. team_carousel_Btn.trigger('next.owl.carousel', [300]);
  26. });
  27. $('#team-carousel-right-btn').click(function () {
  28. "use strict";
  29. team_carousel_Btn.trigger('prev.owl.carousel', [300]);
  30. });