Click here to Skip to main content
15,885,244 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
I want image Swiping Application,in which images must be loaded Dynamically from a selected source or drive etc.After Loading images ,all of them should be shown i any container swiping must be there,then if the user selects the particular image ,it should be zoomed out and there we have an availibility "Swiping " on Mouse Dragging. Just like mobile applications.but not for mobile apps, for touch web application?

i have done it statically ,but i want it dynamically to be done, i'm stuck with it
Posted

1 solution

C#
$("#imagegallery").touchwipe({
     wipeLeft: function() { alert("left"); },
     wipeRight: function() { alert("right"); },
     wipeUp: function() { alert("up"); },
     wipeDown: function() { alert("down"); },
     min_move_x: 20,
     min_move_y: 20,
     preventDefaultEvents: true
});
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900