Galileory jQ offers a cool way to present images on a website.
All images placed into a single box which can be positioned, sized and stretched however you wish. It is totaly client relative, compatible with all CMS and can be integrated into any website or blog. Galileory integration process is extremely simple and does not require advanced programming skills.
Main features:
<!-- Galileory styles --> <link type="text/css" href="/galileory path/galileory.css" rel="stylesheet" media="screen" /> <!-- Galileory script --> <script type="text/javascript" src="/galileory path/jquery.galileory.min.js"></script>
To create image gallery on your html webpage, you should encapsulate all gallery images into a block element (ex. "div") with specified width and height properties. Galileory script would automaticly transform all image containers with class name "galileory".
<div class="galileory" style="width: 960px; height: 540px;"> <img src="image1.jpg" /> <img src="image2.jpg" /> <img src="image3.jpg" /> <img src="image4.jpg" /> </div>
You can also transform specific image containers into galleries using javascript code:
$('#my-gallery').galileory();
You can use photobank as a source of images.
$(expression).galileoryFlickr( url, [options] );
url A string that contains url to Flickr user photostream, photoset or gallery.
options A set of key/value pairs that configure the Flickr request:
Example: $('#flickr-gallery').galileoryFlickr( 'http://www.flickr.com/photos/50955858@N04/galleries/72157624119605399/', {size: 'large', limit: 36} );
Please, visit project's tracker to post your propositions and bug reports.