https://github.com/michaellwest/jquery-picasa
Plugin to simplify the process of accessing images from Google's Picasa
https://github.com/michaellwest/jquery-picasa
Last synced: 6 days ago
JSON representation
Plugin to simplify the process of accessing images from Google's Picasa
- Host: GitHub
- URL: https://github.com/michaellwest/jquery-picasa
- Owner: michaellwest
- Created: 2012-03-31T17:53:38.000Z (about 13 years ago)
- Default Branch: release/v1.0.0
- Last Pushed: 2012-05-30T15:42:26.000Z (almost 13 years ago)
- Last Synced: 2024-05-01T19:23:57.314Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 182 KB
- Stars: 6
- Watchers: 4
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# jQuery Picasa Plugin
This jQuery plugin is designed to simplify the access to Google's Picasa image
gallery.## Usage
Add these two scripts:
Add this stylesheet:
Add this to the body:
Simple example to retrieve all albums:
var userId = "YOUR_USER_ID";
$('#picasa-gallery').picasa('gallery', userId);Simple example to retrieve all images for a specified album:
var userId = "YOUR_USER_ID";
var albumId = "YOUR_ALBUM_ID";
$('#picasa-gallery').picasa('gallery', userId, albumId);## License
Under the same licenses as the jQuery library itself:
## Credits
jQuery picasa is made by Michael West
I got the idea from Lance Pollard who did an excellent job.