Hello,
I am trying to improve UX with scrolling on iOS devices. Native browser's scrolling leaves a lot to be desired. I have found couple of web pages on that, and it looks like that since iOS version 5 it is possible:
http://johanbrook.com/browsers/native...
http://css-tricks.com/snippets/css/mo...
http://stackoverflow.com/questions/18...
http://weblog.west-wind.com/posts/201...
Can you please advise me if it is possible with Appery and how should I implement this feature? I tried couple of simple approaches like adding this styling:
.fastScroll {
overflow-y: scroll !important;
-webkit-overflow-scrolling: touch !important;
}
via page load event:
Appery('PickFoodContainer').addClass('fastScroll');
but none worked for me.