Kevin Z
Kevin Z

Reputation: 341

Adding HTML Touch events to jQuery

I am looking to add touch events to my site. The HTML page I have built has a 6 icon display with a carousel that goes between the 14 icons (6 show, others are hidden, arrow shows the next 6) I am trying to create an iPad version so that users can swipe across the icons to get to the next set of icons. Looking on how to best incorporate touch events to accomplish this...looking for help getting started.

Here is the code: http://jsfiddle.net/gVJQW/ (arrows are missing but they are directly to the left and right of the icons)

Any help is greatly appreciated!

Kevin

Upvotes: 2

Views: 5906

Answers (2)

daniel
daniel

Reputation: 901

if you only want swipe You can try something like the swipe plugin for jquery

jQuery Swipe

im sure you can find more plugins depending on what you need

Upvotes: 2

Thomas Clayson
Thomas Clayson

Reputation: 29935

http://jquerymobile.com/

Has everything you'll need to extend jquery to mobile devices including swipes and gestures... :)

Upvotes: 4

Related Questions