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.

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