我已经得到了以下工作。我想改为显示来自用户流的随机照片 - 不是每个标记,而不是通过公开;一个特定的用户或照片流。
我想自定义以下内容以从特定用户的Feed中提取随机照片;而不是它的当前状态,它基于所有公共照片的标签汇集。
$.getJSON("https://api.flickr.com/services/feeds/photos_public.gne?jsoncallback=?",
{
tags: "landscape", // I would like to filter just via user not tag
format: "json"
},
//The callback function
function(data) {
//Get random photo from the api's items array
var randomPhoto = data.items[Math.floor(Math.random() * data.items.length)];
$(".img-src").css({
position: "relative",
height: "100vh",
//Use the randomPhoto's link
backgroundImage: "url("+randomPhoto.media.m+")",
backgroundPosition: "center",
backgroundRepeat: "no-repeat",
backgroundSize: "cover"
});
}
);