1
On my page I need 3 carousel:
One to the banner, another for ruler and one more for ratings. All will be with images and would need each one to have its parameter, but with Owlcarousel I could not do, since when I call Own it does not allow to modify the other carousel.
$(document).ready(function(){
$('.owl-carousel').({
loop:true,
margin:10,
nav:true,
responsive:{
0:{
items:1
},
600:{
items:3
},
1000:{
items:5
}
}
})
});
With the above script it stays the same for the 3 and need to split for each have its feature. Thanks!
Why don’t you use the
id
of each carousel as selector?$("#carousel_1").owlCarousel({...})
,$("#carousel_2").owlCarousel({...})
,$("#carousel_3").owlCarousel({...})
.– Woss
I tried but didn’t load properly
– Rafael Meirim
Can you ask the question that code too?
– Woss