Created
February 11, 2020 07:46
-
-
Save faruk09/92578266d1333b996505178932ff6218 to your computer and use it in GitHub Desktop.
Owl Carousel Smooth autoplay
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery('.owl-carousel').owlCarousel({ | |
center: true, | |
items:3, | |
loop:true, | |
margin:30, | |
nav:false, | |
dots:true, | |
autoplay: true, | |
slideTransition: 'linear', | |
autoplayTimeout: 6000, | |
autoplaySpeed: 6000, | |
autoplayHoverPause: true, | |
responsive:{ | |
0:{ | |
items:1 | |
}, | |
600:{ | |
items:3 | |
}, | |
1000:{ | |
items:3 | |
} | |
} | |
}); |
thank you, this helps a lot.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks mate this fixed my problem