Instafeed js,div为渲染instafeed

时间:2017-06-13 11:45:47

标签: javascript html instafeedjs

大家好我正在与instafeed.js合作,我想弄清楚是否有可能确定应该呈现哪些div图片:

现在我只使用标准<div id="instafeed"></div>,但我希望能够执行以下操作:

<div id="instafeed-1">Instagram feed with a specific tag</div>
<div id="instafeed-2">Instagram feed with a specific user</div>
<div id="instafeed-3">Instagram feed with a different configuration</div>

1 个答案:

答案 0 :(得分:0)

您可以使用target选项指定其他ID。例如:

var feed = new Instafeed({ target: 'instafeed-1', get: 'tagged', tagName: 'awesome', clientId: 'YOUR_CLIENT_ID' }); feed.run();

有关更多选项,请参阅文档:https://github.com/stevenschobert/instafeed.js/blob/master/README.md#standard-options