Picasa Gallery jQuery Plugin by Alan Hamlett <alan.hamlett@gmail.com>
Displays your public picasa web albums
HTML:
<div class='picasagallery'></div>
Javascript:
$(document).ready( function() { $('.picasagallery').picasagallery( {username:'alan.hamlett'} ); } );
Default Options:
{ username: '', // Your Picasa public username or your Google+ User ID (e.g. https://plus.google.com/u/0/b/this-is-your-user-id) hide_albums: ['Profile Photos', 'Scrapbook Photos', 'Instant Upload', 'Photos from posts'], // hidden album names link_to_picasa: false, // true to display link to original album on Google Picasa thumbnail_width: '160', // width of album and photo thumbnails thumbnail_cropped: false, // use cropped format (square) title: 'Picasa Photo Gallery', // title shown above album list inline: false, // true to display photos inline instead of using the fancybox plugin auto_open: false, // true to automatically open fancyBox for the first photo in the album loaded: false, // true if data was already loaded. false will enable retrieval of data while true will assume that data has been loaded already. mouseWheel: false, // fancyBox setting. If set to true, you will be able to navigate gallery using the mouse wheel arrows: true, // fancyBox setting. If set to true, fancyBox will display arrows closeClick: false, // fancyBox setting. If set to true, fancyBox will be closed when user clicks the content closeBtn: true // fancyBox setting. If set to true, fancyBox will display a close button }