share tumblrのpostから画像のみを取得して表示してみる sw_lucchini forked:0favorite:1lines:14/1/3license: MIT License modified:2010-06-23 14:45:37 tumblrのpostから画像のみを取得して表示してみる jQuery v1.4.2 $(document).ready(function(){ $.getJSON("http://lucchini.tumblr.com/api/read/json?callback=?", function(data) { $.each(data.posts, function(i,posts){ var type = this["type"]; var photo = this["photo-url-75"]; if(type === "photo"){ $('ul').append('<li><img src="' + photo + '" \/><\/li>'); } else { return; } }); }); }); <ul></ul> tumblrのpostから画像のみを取得して表示してみる img{vertical-align:bottom;} ul{margin:0;} li{display:inline;} Code Fullscreen use an iframe compat browser, deer Preview Fullscreen tumblr baires : tumblr sort new page view favorite forked pv61 forked from: tumblrのpostから画像のみ.. baires forked:0 favorite:0lines:14/1/3 (diff:2)