我在我的网站上使用了instafeed插件。自2016年6月1日起,Instagram API更改其设置。照片会变成不同的大小。我怎么像以前一样改回来?我希望它看起来像方形尺寸。
这些是我的安全设置:
var bravesMinimal = new Instafeed({
target: 'tab1',
get: 'tagged',
tagName: 'mytagname',
userId: xxxxxxxxxxxxx,
accessToken: 'xxxx',
limit: 12,
resolution: 'low_resolution',
template: '<div class="insta-wrap"><img src="{{image}}" /><a href="{{link}}" target="_blank"><div class="likes-wrap"><div class="likes">♥ {{likes}}</div></div></a></div>',
after: function() {
if (!this.hasNext()) {
myButton.hide();
}
}
});
答案 0 :(得分:2)
您可以通过添加这样的css来保护正方形尺寸,例如:
#instafeed a img{
width:75px;
height:75px;
}