所以我试图在我的网站上展示我的 facebook 粉丝页面中的专辑。我使用此代码并设法在我的网站上获取图片(使用 css 格式),但安装灯箱以显示完整尺寸的图像将不起作用。任何人的想法?
提前致谢!
代码:
HEAD
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script>
//fbAlbum Script courtesy of zach@lysobey.com | http://zach.lysobey.com/projects/fbalbum
(function($){$.fn.fbAlbum=function(f){var g=this;var h={'albumID':10150302289698306,'limit':100,'ul':'album','callback':'','title':true};if(f){$.extend(h,f)}var i="https://graph.facebook.com/"+h.albumID+"/photos?limit="+h.limit+"&callback=?";$.getJSON(i,function(a){var b=[];for(var c in a){for(var d in a[c]){val2=a[c][d];if(typeof(val2.source)!="undefined"){var e="";if(h.title&&val2.name){e=val2.name}b.push('<li><a href="'+val2.source+'" rel="prettyPhoto[gallery1]" title="'+e+'"><img src="'+val2.picture+'" width="72" height="72" /></a></li>')}}};$('<ul />',{'class':h.ulClass,html:b.join('')}).appendTo(g);if(h.callback){h.callback()}});return this}})(jQuery);
$(document).ready(function() {
$('#gallery').fbAlbum({
'albumID':XXX
});
});
</script>
BODY
<div id="gallery"></div>
PS:我试图使用这个 jQuery 灯箱:http ://www.no-margin-for-errors.com/projects/prettyphoto-jquery-lightbox-clone/#prettyPhoto