Skip to content

Instantly share code, notes, and snippets.

@wilvandertuin
Created July 21, 2011 05:37
Show Gist options
  • Save wilvandertuin/1096567 to your computer and use it in GitHub Desktop.
Save wilvandertuin/1096567 to your computer and use it in GitHub Desktop.
Funnel example with Tumblr feed
// Get Tumblr feed
$('#blog').funnel({
"services": [{
"name": "tumblr",
"user": "jeromche",
"tmpl": {
"regular": "#tmpl_tumblr_regular",
"photo": "#tmpl_tumblr_photo",
"video": "#tmpl_tumblr_video",
"quote": "#tmpl_tumblr_quote"
},
"max_items": 25
}],
"callback": function() {
// After loading all images run masonry on the container element.
$('#blog').imagesLoaded(function() {
$('#blog').masonry({
"itemSelector": "article",
"columnWidth": 430
});
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment