1. jQuery FancyZoom

Orderlist develop a lighbox clone powered by jQuery. More details can be read here.
The code below initialized the plugin and add the Zoom Effect to any a tag classed with zoom, and will show content relating to the id referenced in the href of the a tag.
|
1 2 3 |
$(document).ready(function() { $('a.zoom').fancyZoom({scaleImg: true, closeOnClick: true}); }); |
The sample html code.
|
1 |
<a class="zoom" href="insicdesigns.com"><img src="path/to/image/sample.gif"></a> |
2. FaceBox
Facebox is a jQuery-based, Facebook-style lightbox which can display images, divs, or entire remote pages. Visit faceBox site for more details.
Load the dependency files. Make sure the jQuery is loaded first before the facebox plugin.
|
1 2 3 |
<script src="jquery.js" type="text/javascript"></script><br /> <link href="/facebox/facebox.css" media="screen" rel="stylesheet" type="text/css"/><br /> <script src="/facebox/facebox.js" type="text/javascript"></script> |
Initialized the code during onload.
|
1 2 3 |
jQuery(document).ready(function($) { $('a[rel*=facebox]').facebox() }) |
The sample html code.
|
1 2 3 4 5 6 7 8 |
//for images <a href="stairs.jpg" rel="facebox">text</a> //for DIV <a href="#info" rel="facebox">text</a> //for Ajaxes <a href="remote.html" rel="facebox">text</a> |
3. FancyBox
Is one of my favorite among Lightbox clones. Aside from easy integration to your html code it has a nice effect and smooth animation.
The following are list of FancyBox features:
- Automatically scales large images to fit in window
- Adds a nice drop shadow under the zoomed item
- Groups related items and adds navigation through them (uses preloading)
- Can display images, inline and iframed content
- Customizable through settings and CSS
For more details about FB. Visit this site here.
Sample Code:
|
1 2 3 4 5 6 7 8 9 |
$(document).ready(function() { $("p#test1 a").fancybox(); $("p#test2 a").fancybox({ 'hideOnContentClick': true }); $("p#test3 a").fancybox({ 'zoomSpeedIn': 0, 'zoomSpeedOut': 0, 'overlayShow': true }); }); |
4. Pirobox
Another jQuery Lighbox clone plugin I found.
How to use:
Download and include dependencies.
|
1 2 3 |
<link href="css_pirobox/pirobox.css" media="screen" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="js/jquery1.2.6.js"></script> <script type="text/javascript" src="js/pirobox_packed.js"></script> |
Initialized the plugin function:
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<script type="text/javascript"><br /> $(document).ready(function(){<br /> $('.thumbs').piroBox({<br /> <!-- settings.options --><br /> border: '10', <br /> borderColor: '#fff',<br /> mySpeed: 700, <br /> bg_alpha: 0.5,<br /> cap_op_start : 0.5,<br /> cap_op_end: 0.8,<br /> pathLoader: '#000 url(css/ajax-loader.gif) center center no-repeat;', <br /> gallery : '.gallery li a', <br /> gallery_li: '.gallery li', <br /> single : '.single a',<br /> next_class: '.next_in ', <br /> previous_class: '.previous_in ' <br /> }); <br /> });<br /> </script> |
5. ThickBox
ThickBox is a webpage UI dialog widget written in JavaScript on top of the jQuery library. Its function is to show a single image, multiple images, inline content, iframed content, or content served through AJAX in a hybrid modal.
Features:
- ThickBox was built using the super lightweight jQuery library. Compressed, the jQuery library is 20k, uncompressed it’s 58k.
- The ThickBox JavaScript code and CSS file only add an additional 15k (only 10k by using the thickbox-compressed.js) on top of the jQuery code. The CSS file could additionally be compressed if need be.
- ThickBox will resize images that are bigger than the browser window.
- ThickBox offers versatility (images, iframed content, inline content, and AJAX content).
- ThickBox will hide form elements in Windows IE 6.
- ThickBox will remain centered in the window even when the user scrolls the page or changes the size of the browser window. Clicking an image, the overlay, or close link will remove ThickBox.
- Due to the ThickBox creator’s view that transitions should be tailored by individual authors, ThickBox windows do not implement fancy transitions. Feel free to add them as you see fit. Is this a feature? Well, some might say it is.
- ThickBox can be invoked from a link element, input element (typically a button), and the area element (image maps).
6. prettyPhoto
prettyPhoto a jQuery lightbox clone develop by Stéphane Caron.
Quick and easy to use plugin. Just download and include file dependency.
|
1 2 3 |
<script src="js/jquery.js" type="text/javascript" charset="utf-8"></script> <link rel="stylesheet" href="css/prettyPhoto.css" type="text/css" media="screen" title="prettyPhoto main stylesheet" charset="utf-8" /> <script src="js/jquery.prettyPhoto.js" type="text/javascript" charset="utf-8"></script> |
Initialize the the prettyPhoto function.
|
1 2 3 4 5 |
<script type="text/javascript" charset="utf-8"><br /> $(document).ready(function(){<br /> $("a[rel^='prettyPhoto']").prettyPhoto();<br /> });<br /> </script> |
Add rel=”prettyPhoto” to any picture you want to activate the prettyPhoto feature.
|
1 2 3 |
<a href="images/fullscreen/1.jpg" rel="prettyPhoto" title="Description"> <img src="/images1.jpg" alt="Picture 1 title" /> </a> |
Visit the site for more details and example.
7. NyroModal
Features:
- Ajax Call
- Ajax Call with targeting content
- Ajax call can change the modal size
- Single Image
- Images Gallery with arrow navigating
- Form
- Form with targeting content
- Form with file upload
- Form with file upload with targeting content
- Dom Element
- Manual Call
- Iframe
- Error handling
- Modal will never goes outside the view port
- Esc key to close the window
- Customizable animation
- Customizable look
- W3C valid HTML (Transitionnal)
8. Interface Imagebox
Interface Imagebox is an Interface plugin for jQuery.
How to use:
Initialize the Imagebox function.
|
1 2 3 4 5 6 7 8 9 10 11 |
$(document).ready( function() { $.ImageBox.init( { loaderSRC: 'images/imagebox/loading.gif', closeHTML: '<img src="images/imagebox/close.jpg" />' } ); } ); |
Sample HTML Code.
|
1 |
<a href="images/imagebox/large-image.jpg" title="Sample" rel="imagebox-bw"><img src="images/imagebox/thumnails.jpg" /></a> |
More details for this plugin visit the site here.
9. jQuery lightBox plugin
jQuery lightBox plugin is simple, elegant, unobtrusive, no need extra markup and is used to overlay images on the current page through the power and flexibility of jQuery´s selector.
lightBox is a plugin for jQuery. It was inspired in Lightbox JS by Lokesh Dhakar.
How to use:
Download and Include all the JavaScript and CSS dependencies.
|
1 2 3 4 5 6 |
//the JS <script type="text/javascript" src="js/jquery.js"></script> <script type="text/javascript" src="js/jquery.lightbox-0.4.js"></script> //the CSS <link rel="stylesheet" type="text/css" href="css/jquery.lightbox-0.4.css" media="screen" /> |
Then select the links where you want to use the lightBox plugin. See sample code below.
|
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<script type="text/javascript"> $(function() { // Use this example, or... $('a[@rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel // This, or... $('#gallery a').lightBox(); // Select all links in object with gallery ID // This, or... $('a.lightbox').lightBox(); // Select all links with lightbox class // This, or... $('a').lightBox(); // Select all links in the page // ... The possibility are many. Use your creative or choose one in the examples above }); </script> |
For more details and information about this plugin visit the site here.
10. Greybox Redux
A lightweight plugin. Only 1.2kb using the jQuery library. Completely unobtrusive – no need to embed Javascript into your site.
Initialized the plugin.
|
1 2 3 4 5 6 7 8 9 10 |
<script type="text/javascript"><br /> var GB_ANIMATION = true;<br /> $(document).ready(function(){<br /> $("a.greybox").click(function(){<br /> var t = this.title || this.innerHTML || this.href;<br /> GB_show(t,this.href,470,600);<br /> return false;<br /> });<br /> });<br /> </script> |
Sample HTML code.
|
1 2 3 4 5 6 7 |
<h3>See it in action:</h3> <ul> <li><a href="http://google.com/" title="Google" class="greybox">Launch Google</a></li> <li><a href="http://yahoo.com/" title="Yahoo" class="greybox">Visit Yahoo</a></li> <li><a href="http://msn.com/" class="greybox">Microsoft would like a visit.</a></li> <li><a href="http://jquery.com/" class="greybox">jQuery Rocks!</a></li> </ul> |
Thats all I can find for now. If you know something you can add here. Please let me know, feel free to drop me a comment.

Tags: 



Pingback: 10+ promising jQuery Lightbox-Clones Plugin | Apni Library
Pingback: graphiceyedea » Blog Archive » the right/light lightbox
Pingback: Daily Links | AndySowards.com :: Professional Web Design, Development, Programming, Hacks, Downloads, Math and being a Web 2.0 Hipster?
Pingback: Technology Related Links for April 30, 2009 - Jason N. Gaylord's Blog
Pingback: JQuery goodness « CogBlog
Pingback: links for 2009-07-31 | Appunti di storie di web
Pingback: links for 2009-07-31 | Appunti di storie di web
Pingback: 10+ promising jQuery Lightbox-Clones Plugin | INSIC 2.0 Web Development & Design Blog | Squico
Pingback: Fancy Zoom « The Cillout Showroom
Pingback: Guida per imparare ad usare jQuery Lightbox | unodeitanti.com
Pingback: 8 Amazing JavaScript Image Zoom Scripts
Pingback: 10+ promising jQuery Lightbox-Clones Plugin | INSIC 2.0 Web Development & Design Blog » Web Design
Pingback: 10+ promising jQuery Lightbox-Clones Plugin « JqueryHeaven
Pingback: 10+ promising jQuery Lightbox-Clones Plugin | JqueryHeaven