|
|
|
|
|
by rodion_89
4399 days ago
|
|
It's actually just using the browsers scrolling mechanism. Android 4+, iOS 5+ ship with touch-scrolling that you can enable on an element so it's as close to native scrolling as you can get. Just add this CSS: overflow: scroll;
-webkit-overflow-scrolling: touch;
|
|