Currently the carousel stops when you hover it, I've added autoplayHoverPause:false
but it doesn't seem to change anything.
Is there another option that I could use to stop it from stopping when it's hovered?
$('.owl-carousel').owlCarousel({
autoplayHoverPause:false,
loop:true,
margin:0,
nav:true,
responsive:{
0:{
items:1
},
600:{
items:2
},
1000:{
items:4
}
}
});
As j.rey noted, it seems stopOnHover
is the correct way to start/stop autoplay on hover per the specs on this page:
http://owlgraphic.com/owlcarousel/#customizing
I don't see any reference to autoplayHoverPause
in the docs. Maybe that was an older version?