JavaScript libraries for touchscreen devices

I know that there are a number of frameworks that can help make Web applications on Mobile Safari / Webkit look like native applications (for example, jQTouch), but are there any lighter libraries that help with a slightly lower level?

for example, I might want to add some animations to certain touch events in order to reproduce the stylish style of the iPhone.

I don’t want to create an iPhone web application as such, just enhance the existing site with a few special touch events.

It is not so difficult to create this material directly using the touch events that the device provides, but some iPhone animation styles are quite difficult to reproduce. for example, a bounce when you get to the end of the scroll bar, etc. It's just interesting if anyone did the work and wrapped it in an open source library.

+3
source share
3 answers

This will not completely answer your question, but since you mentioned scanned scrolling, TouchScroll was only released on Tuesday.

+1
source

I am looking for the same thing, JavaScript frameworks free of IE stuff.

Till

XUI http://code.google.com/p/xui-js/

SLY http://github.com/digitarald/sly

jQuery ( jqtouch) http://jquerymobile.com/2010/08/announcing-the-jquery-mobile-project/

0

http://zeptojs.com/ is all you need.

This is jQuery trimmed for webkit mobile. Great library with (brand new) great documentation. Handles ajax, dom selection, touch events. It does not have user interface components.

Very light.

0
source

Source: https://habr.com/ru/post/1743397/


All Articles