I am trying to make my carousel to use different effect on each slide.What i have done so long is :
var effect = ['flipInX', 'fadeInLeft', 'fadeInRight']
for(var i=0; i < 3; i++){
$("#owl-main").owlCarousel({
dots: true,
animateIn: effect[i],
items: 1,
autoplay: true,
loop:true,
});
}
Is there any solution or i am trying to do something that is not possible? Thank you in advance!