anderlaini
anderlaini

Reputation: 1821

ionic slides in vertical direction rather than horizontal

I'm trying to make Ionic slides vertical, not horizontally?

So, instead it drags/animates from left/right, I want it up/down.

Is it possible?

Upvotes: 0

Views: 293

Answers (1)

EinfachHans
EinfachHans

Reputation: 255

The Ionic Slides are based on SwiperJS. As you can read in their Api Documentation, there is a Option called direction, which can be horizontal or vertical.

These Options can passed to the <ion-slides> via the Options like this:

<ion-slides [options]="sliderOptions">
    ...
</ion-slides>

*.html

sliderOptions = {
    direction: 'vertival'
}

*.ts

Upvotes: 2

Related Questions