Car Lautaro
Car Lautaro

Reputation: 331

Touchscroll.js by davidaurelio - Alternative or fix

I was using touchscroll.js by davidaurelio but it doesn't work on ios at all.

Anyone can recomend me an alternative?

Thanks!

Upvotes: 0

Views: 104

Answers (1)

Ivan86
Ivan86

Reputation: 5708

To add momentum scroll to divs when viewed on ios devices add this to your container div CSS:

    overflow-y: scroll; /* has to be a scroll, not auto */
    -webkit-overflow-scrolling: touch;

found here

Upvotes: 1

Related Questions