Lightbox like Image Gallery Viewer Plugin - gallerie

File Size: 3.8 MB
Views Total: 1849
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   
Lightbox like Image Gallery Viewer Plugin - gallerie

gallerie is a jQuery gallery plugin that allows you to create a lightbox like image gallery viewer for showcasing a group of images with thumbnails and image overlay captions.

Basic Usage:

1. Include jQuery library and jQuery gallerie on your web page

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="jquery.gallerie.js"></script>

2. Include jQuery gallerie CSS to style your plugin

<link rel="stylesheet" type="text/css" href="gallerie.css"/>

3. Markup html structure

<div id="gallery">
<a href="/1.jpg"><img src="/thumbs/1.jpg"/></a>
<a href="/2.jpg"><img src="/thumbs/2.jpg"/></a>
<a href="/3.jpg"><img src="/thumbs/35.jpg"/></a>
<a href="/4.jpg"><img src="/thumbs/4.jpg"/></a>
<a href="/5.jpg"><img src="/thumbs/5.jpg"/></a>
</div>

4. Call the plugin

<script type="text/javascript">
$(document).ready(function(){
	$('#gallery').gallerie();
});
</script>

More Examples:

Change Log:

v0.0.6 (2013-04-19)

  • Added previous and next buttons and fixed CSS positioning.

v0.0.5 (2013-04-08)

  • Added imagebox transition effects.

This awesome jQuery plugin is developed by unknown. For more Advanced Usages, please check the demo page or visit the official website.