September
11

Galleria is a clean and easy to implement image gallery based on jQuery. This is a great tool if you need to add an image gallery to your site and don't want to use a flash based gallery. I prefer JavaScript and CSS galleries over flash galleries because they are usually smaller and slightly easier to implement. This is a small (4K) script that doesn't add a lot of overhead to your page load time and is completely customizable to your taste. The images are preloaded individually. Some other features to note are the ability to your custom thumbnails, add a caption from image anchor title, and call events from the image onLoad event.

Implementing this gallery is, as noted earlier, very easy. You can have the whole thing up and running in only four lines of code. You need to add the CSS and JavaScript files to the header and then add the unsorted list that gets converted into the gallery. I have displayed the code that needs to be inserted into your header below. You can also get more help, checkout Demo1 or Demo2, and download the script.

 
<link href="galleria.css" rel="stylesheet" type="text/css" media="screen">
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="jquery.galleria.js"></script>
<script type="text/javascript">
jQuery(function($) { $('ul.gallery').galleria(); });
</script>
 

More information about usage available at the Galleria website.

Share and Enjoy:
  • Digg
  • del.icio.us
  • Facebook
  • description
  • Reddit
  • Google
  • Slashdot
  • StumbleUpon
  • Technorati
  • Propeller
  • Mixx
  • Live
  • Ma.gnolia
  • Furl
  • NewsVine
  • Gospel Scoop





One Comment

What a another great find! I think I’m going to replace my current flashed bases gallery with this. Thanks for the share!

Something to say?

Please note: Comment moderation is enabled and may delay your comment. There is no need to resubmit your comment.