ptamzz
ptamzz

Reputation: 9365

swipe effect with jQuery [for touch]

I want to create a touch prototype for a mobile web app and I need to implement the iPhone swipe effect (touch).

Does anyone have any idea on any jQuery plugins that I can use directly?? I have the markup as

<ul id="body">
   <li class="item">1</li>
   <li class="item">2</li>
   <li class="item">3</li>
   <li class="item">4</li>
</ul>

and I want to implement the swipe on the list items

Upvotes: 1

Views: 2791

Answers (1)

Delyan
Delyan

Reputation: 8911

Consider using jQuery Mobile. They are moving unbelievably fast and support native-like interfaces on several platforms. The swipe effect is just one of many tricks up its sleeve.

Upvotes: 2

Related Questions