What is a good iScroll alternative that supports iOS, Android, WP8 and pull-to-refresh?

I am looking for an alternative to iScroll to scroll inside a div.

It must support these OSs:

  • IOS
  • Android
  • KP8

And I also need features to update.

Any suggestions?

+7
source share
2 answers

After several days of evaluation, I came to the conclusion that there is no infrastructure or library that would meet all my needs. Thus, the only choice is to create an individual solution for each operating system. Here is what I came up with:

  • iOS <5: iScroll
  • iOS > = 5: scroll through CSS pages overflow-y:auto and -webkit-overflow-scrolling:touch . Pull-to-refresh via https://github.com/dantipa/pull-to-refresh-js
  • Android : iScroll
  • WP8 Native scrolling through overflow-y:auto . Native implementation for pull-to-refresh (very complex).
+7
source

I'm not quite sure if all OSs are supported, but give it a try (it also has pull-to-refresh): http://zynga.github.com/scroller/

Also http://labs.ft.com/articles/ft-scroller/ worth a try (supports your OS requirements), although I don’t know if there is a way to achieve traction easy to update.

+2
source

All Articles