main.js 592 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. $(function(){
  2. $('.works-carousel').owlCarousel({
  3. loop:true,
  4. margin:30,
  5. nav:true,
  6. dots: false,
  7. navText: ['<img src="img/left.svg">', '<img src="img/right.svg">'],
  8. startPosition: 1,
  9. responsive:{
  10. 0:{
  11. items:1
  12. },
  13. 600:{
  14. items:1
  15. },
  16. 1000:{
  17. items:1
  18. }
  19. }
  20. });
  21. $('.contributor-carousel').owlCarousel({
  22. loop:true,
  23. margin:0,
  24. nav:true,
  25. dots: false,
  26. navText: ['<img src="img/left.svg">', '<img src="img/right.svg">'],
  27. // startPosition: 1,
  28. responsive:{
  29. 0:{
  30. items:1
  31. },
  32. 600:{
  33. items:1
  34. },
  35. 1000:{
  36. items:1
  37. }
  38. }
  39. });
  40. });