er.arunkushwaha
er.arunkushwaha

Reputation: 156

How to make react swiper slide in vertical direction

i want to make home page like where i can swipe one post at a time in moile view. I have tried react swiper but react swiper is swipping post horizontally i want to swipe post vertically any idea how to make this ??

Upvotes: 1

Views: 9177

Answers (1)

yechu
yechu

Reputation: 35

you can give it direction, just add direction prop like this

  <Swiper
            // install Swiper modules
            slidesPerView="1"
            mousewheel={true}
            direction="vertical"
            modules={[Pagination]}
            pagination={{ clickable: true }}
            scrollbar={{ draggable: true }}
        >

Upvotes: 3

Related Questions