How to use the owl carousel vertically?

I did not want to take the plugin code, so I was wondering if someone already managed to use the plugin vertically. This shame on the part of this plugin can be used horizontally. Sorry for the langage ...

+5
source share
2 answers

Here is the CodePen that solves this:

http://codepen.io/dapinitial/pen/xZaRqz

$(".owl-carousel").owlCarousel({ loop: true, autoplay: true, items: 1, nav: true, autoplayHoverPause: true, animateOut: 'slideOutUp', animateIn: 'slideInUp' }); 
+5
source

For beta 2.0, itโ€™s currently not possible to slide vertically. However, complexity has been significantly reduced by refactoring and plugin architecture to make room for more features. This includes, in particular, the API with which various animation effects can be broken down into individual animation providers. Thus, a vertical slide will certainly be possible. However, this function is ambitious and there are some problems to solve. Here is the current roadmap .

+3
source

All Articles