forum

Home / DeveloperSection / Forums / How to add swipe feature to a image gallery?

How to add swipe feature to a image gallery?

Anonymous User 2125 31-Dec-2014
I have an image gallery and I want to add swipe feature to it,next and prev big image. I don't want to use any pluggin. I have some code, I tried some but I was unable to make it work. Any advice is highly appreciated.

$(document).on("pagecreate","#pageone",function(){
 $("img").on("swipeleft",function(){
    console.log("Left");
  }); 
 $("img").on("swiperight",function(){
    console.log("Right");
  });                          
});

Jsfiddle

Thanks!

Updated on 31-Dec-2014
I am a content writter !

Can you answer this question?


Answer

1 Answers

Liked By