VSK
VSK

Reputation: 521

How to swipe tabs to change the data?

How to swipe the tabs like swipe to move "One Page" to "Another page"? (google store play - like). Please help me.

Thank you.

Upvotes: 1

Views: 293

Answers (1)

san
san

Reputation: 214

You can use TouchSwipe.js in your project. The code is below:

$("body").swipe({
  swipe:function(event, direction, distance, duration, fingerCount) {
   $(this).text("You swiped " + direction );
 }
 });

and the link is this: http://labs.rampinteractive.co.uk/touchSwipe/demos/Basic_swipe.html

Upvotes: 1

Related Questions