jQuery Plugin To Show Photo Streams Form Social Networks
File Size: | 41.6 KB |
---|---|
Views Total: | 7508 |
Last Update: | |
Publish Date: | |
Official Website: | Go to website |
License: | MIT |
Social Photo Stream is a jQuery plugin which allows you to show photo stream feeds from the most popular social networks including deviantArt, Instagram, Picasa, Pinterest, Flickr, Dribbble, Youtube and FeedBurner.
How to use it:
1. Load the latest version of jQuery library and the jQuery social photo stream plugin at the bottom of the web page.
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="socialstream.jquery.js"></script>
2. Create a container element to place the photo stream.
<div class="social-feed demo"> </div>
3. Call the plugin and specify the social network.
$('.demo').socialstream({ socialnetwork: 'pinterest', limit: 6, username: 'YOUR USER NAME', overlay: true, apikey: false })
4. Style the plugin whatever you like in the CSS.
.social-feed { width: 500px; margin: 0 auto; display: block; padding: 30px; display: table; } .social-feed li { width: 50px; height: 50px; list-style: none; float: left; margin-right: 5px; margin-bottom: 5px; } .social-feed li img { width: 50px; height: 50px; }
Change logs:
2016-06-09
- Fixed issues with recent API and terms changes.
2015-07-16
- JS update.
2015-06-09
- Fixed Youtube stream - switched to API v3.
- Fixed issue with Smiley icons on DeviantArt strea
2014-07-22
- update
This awesome jQuery plugin is developed by pixel-industry. For more Advanced Usages, please check the demo page or visit the official website.