increase number of photos from flickr using json

Posted by Andrew Welch on Stack Overflow See other posts from Stack Overflow or by Andrew Welch
Published on 2010-04-23T09:21:27Z Indexed on 2010/04/23 9:23 UTC
Read the original article Hit count: 230

Filed under:
|
|

Hi this is my code: 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',
            pause: 1,
            random: 1
        });
    });
});

© Stack Overflow or respective owner

Related posts about flickr

Related posts about jQuery