nanoGALLERY4 jQuery plugin - Pictures from Picasa/Google+ account

by Christophe Brisbois

HTML

<script src="http://nanogallery.brisbois.fr/jquery.nanogallery.js"></script>
<link rel="stylesheet" href="http://nanogallery.brisbois.fr/css/nanogallery.css">
<h2>nanoGALLERY / Image Source: Picasa/Google+ account</h2>

<div id="nanoGallery"></div>

CSS

body {
    background:#333;
    color:#eee;
}

JavaScript

$(document).ready(function () {
    jQuery("#nanoGallery").nanoGallery({
        kind: 'picasa',
        userID: '[email protected]',
        
        // uncomment line to display one specefic album:
        //album: '5852572882905112961',
        
        thumbnailHoverEffect:'borderLighter'
    });
    
});