Using a scrollable div
.scrollable-div{
overflow-x: scroll;
overflow-y: hidden;
white-space: nowrap;
}
DEMO on Android devices the scrolling on swipe is smooth and even has acceleration & deceleration.
The same code on an iPhone, the scrolling is stiff. When the user releases touch the scrolling stops immediately.
How do you make the iPhone treat the scrollable div like an Android browser with smooth acceleration/deceleration native style scrolling?