使用json增加flickr中的照片数量

时间:2022-11-23 18:29:54

Is is possible to get more photos from flickr. What is the standard / default number?

是否有可能从flickr获得更多照片。什么是标准/默认号码?

$(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',
            pause: 1,
            random: 1
        });
    });
});

1 个解决方案

#1


1  

I guess http://www.flickr.com/services/feeds/docs/photos_public/ is only returns 20 items of photo/videos!

我猜http://www.flickr.com/services/feeds/docs/photos_public/只返回20项照片/视频!

#1


1  

I guess http://www.flickr.com/services/feeds/docs/photos_public/ is only returns 20 items of photo/videos!

我猜http://www.flickr.com/services/feeds/docs/photos_public/只返回20项照片/视频!