我有一个要求,我必须显示来自用户帐户的 Instagram 照片xxxx
和标记为x,x2,x3,x4
.
是否可以使用 instafeed.js 脚本同时处理基于用户帐户和基于标记的照片
脚本
var instaFeed = new Instafeed({
get: 'user',
userId: 6678174,
accessToken: '6678174.467ede5.205a03ebc4b74d4082823781c3149575',
target: 'instafeed',
sortBy: 'most-recent',
limit: 32,
resolution: 'standard_resolution',
template: '<a class="fancybox" href="{{image}}"><img src="{{image}}" /><div id="filter">{{model.filter}}</div><div class="info"><p class="location"><i class="icon-location"></i>{{location}}</p><p><i class="icon-comment"></i>{{caption}}</p><br><ul><li class="icon-heart">{{likes}} likes<li class="icon-chat">{{comments}} comments</ul></div></a>'
}).run();
$.fn.extend({
matchHeight: function(data){
var maxHeight = 0;
$(this).each(function() {
maxHeight = maxHeight > $(this).height() ? maxHeight : $(this).height();
});
$(this).height(maxHeight);
}
});