erameshbab
erameshbab

Reputation: 21

Need Vertical Scrollbar in idangerous vertical swiper

I am using idangerous vertical swiper of two slides in a mobile app using jquery mobile. I need a vertical scroll bar in second slide as I have grid in it, but both as the slide height is fixed I am unable to achieve it. I have a thought that swiper event and scrolling event will be collided. I have tried in lot of ways but couldn't break this.

Thanks, E. Ramesh Babu

Upvotes: 0

Views: 4450

Answers (2)

Xavier-Lam
Xavier-Lam

Reputation: 513

on mobile devices, you should use

e.stopPropagation();

on the element you want to scroll on touchstart event

Upvotes: 0

Ruddy
Ruddy

Reputation: 9923

So are you looking for something like this?

CSS:

.swiper-slide:nth-child(2) {
    overflow-y: scroll;
}

It should be a simple as that.

DEMO HERE

And here is making it vertical

DEMO HERE

Upvotes: 1

Related Questions