increase number of photos from flickr using json
Is is possible to get more photos from flickr. What is the standard / default number?
$(document).ready(function(){
$.getJSON("http://api.flickr.com/services/feeds/photos_public.gne?id=48719970@N07&lang=en-us&format=json&jsoncallback=?", function(data){
$.each(data.items, function(i, item){
var newurl = 'url(' + item.media.m + ')';
$("<div class='images'/>").css('background', newurl).css('backgroundPosition','top center').css('backgroundRepeat','no-repeat').appendTo("#images").wrap("<a target=\"_blank\ href='" + item.link + "'></a>");
})
$("#title").html(data.title);
$("#description").html(data.description);
$("#link").html("<a href='" + data.link + "' target=\"_blank\">Visit the Viget Inspiration Pool!</a>");
//Notice that the object here is "data" because that information sits outside of "items" in the JSON feed
$('.jcycleimagecarousel').cycle({
fx: 'fade',
speed: 300,
timeout: 3000,
next: '#next',
prev: '#prev',
pa开发者_开发技巧use: 1,
random: 1
});
});
});
I guess http://www.flickr.com/services/feeds/docs/photos_public/ is only returns 20 items of photo/videos!
精彩评论