Skip to content

Instantly share code, notes, and snippets.

Created February 3, 2014 06:34
Show Gist options
  • Save anonymous/8779650 to your computer and use it in GitHub Desktop.
Save anonymous/8779650 to your computer and use it in GitHub Desktop.
A Pen by Secret Sam.
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<div id="container">
<div id="instafeed"></div>
</div>
<script src="http://f.cl.ly/items/3o2z3b1R3G250G1t0w2L/instafeed.min.js"></script>
//Initiante instafeed.js
var userFeed = new Instafeed({
limit: 20,
get: 'user',
userId: 226603588,
accessToken: '226603588.467ede5.35d9e4467e4f418dab11056eac4a6f1e',
template: '<div id="group"><a id="likes">{{likes}} <i class="fa fa-heart"></i></a><img src="{{image}}"/> </div>'
});
userFeed.run();
#container
{
text-align:center;
}
#group
{
margin:100px;
}
#likes
{
position:relative;
left:90px;
top:-70px;
text-decoration:none;
color:#fff;
}
#instafeed img
{
opacity:0.6;
}
#instafeed img:hover
{
opacity:1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment