If you want to fully integrate swipe effects to your fancybox you just need to add the following lines to your fancybox.js code::
Copy the code into the _setContent
function (recommended is on the very end of that function)::
$(F.outer).on('swipeleft', function() {
F.next();
});
$(F.outer).on('swiperight', function() {
F.prev();
});
To make this work you need two lightweight jquery plugins:
http://plugins.jquery.com/event.move/
http://plugins.jquery.com/event.swipe/
That's it. Have fun