将Flickr照片提供给网站
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将Flickr照片提供给网站相关的知识,希望对你有一定的参考价值。
Quick and easy way to feed flickr images into your website
function jsonFlickrFeed(o) { var i = 0; while(o.items[i]) { document.write('<img src="' + o.items[i].media.m + '" alt="' + o.items[i].title +'">'); i++; } } </script> <script src="http://api.flickr.com/services/feeds/[email protected]&lang=en-us&format=json" type="text/javascript"></script>
以上是关于将Flickr照片提供给网站的主要内容,如果未能解决你的问题,请参考以下文章