A touchable jQuery lightbox.
##What is Swipebox ?
Swipebox is a jQuery "lightbox" plugin for desktop and mobile.
##Features
- Swipe gestures for mobile
- Keyboard Navigation for desktop
- CSS transitions with jQuery fallback
- Retina support for UI icons
- Easy CSS customization
###Compatibility
Chrome, Safari, Firefox, Opera, IE9+, IOS4+, Android, and Windows phone.
##Usage
###Javascript
Include jquery and the swipebox script in your head tags or right before your body closing tag.
<script src="lib/jquery-2.1.3.js"></script>
<script src="src/js/jquery.swipebox.js"></script>
###CSS
Include the swipebox CSS style in your head tags.
<link rel="stylesheet" href="src/css/swipebox.css">
###HTML
Use a specific class for your links, use the title attribute as caption, and use the data-href attribute if you would like to add a download link to the title bar.
<a href="big/image.jpg" class="swipebox" title="My Caption" data-href="original/image.jpg">
###Fire the plugin
Bind the swipebox behaviour on every link with the "swipebox" class.
$( '.swipebox' ).swipebox();
###Options
useCSS : true, // false will force the use of jQuery for animations
initialIndexOnArray: 0, // which image index to init when a array is passed
hideCloseButtonOnMobile : false, // true will hide the close button on mobile devices
hideBarsDelay : 3000, // delay before hiding bars on desktop
videoMaxWidth : 1140, // videos max width
beforeOpen: function(){} , // called before opening
afterOpen: null, // called after opening
afterClose: function(){}, // called after closing
loopAtEnd: false, // true will return to the first image after the last image is reached
autoplayVideos: false, // true will autoplay Youtube and Vimeo videos
downloadText: 'Download'
###Pull Requests
If you want to submit a pull request please be sure to grunt the whole thing (mostly jshintrc validation and minified file) and send me a demo URL. Also, please comment your code.
Thanks for your understanding and thank you all for your helpful support!