Yet another responsive jQuery lightbox and popup plugin, support images, inline contents, iframes, vimeo and youtube videos.
Insert the required stylesheet at the header of your HTML document:
<link rel="stylesheet" href="/flashy/flashy.min.css" />
Insert the script at the footer of your document:
<script src="/jquery/jquery.js"></script>
<script src="/flashy/jquery.flashy.min.js"></script>
Insert one or more links with its your own custom class
<a class="gallery" href="image-big.jpg"><img src="image-small.jpg" alt="image alt"/></a>
Call the plugin function and your Flashy is ready for all the selected links.
$(document).ready(function(){
$('.gallery').flashy();
});
Released under the MIT License