123456789101112131415161718192021222324252627282930313233343536373839404142 |
- $(function(){
- $('.works-carousel').owlCarousel({
- loop:true,
- margin:30,
- nav:true,
- dots: false,
- navText: ['<img src="img/left.svg">', '<img src="img/right.svg">'],
- startPosition: 1,
- responsive:{
- 0:{
- items:1
- },
- 600:{
- items:1
- },
- 1000:{
- items:1
- }
- }
- });
- $('.contributor-carousel').owlCarousel({
- loop:true,
- margin:0,
- nav:true,
- dots: false,
- navText: ['<img src="img/left.svg">', '<img src="img/right.svg">'],
- // startPosition: 1,
- responsive:{
- 0:{
- items:1
- },
- 600:{
- items:1
- },
- 1000:{
- items:1
- }
- }
- });
-
- });
|