我创建了一个Instagram Feed,使用标签提取图像和视频。我知道在我的手机上看Instagram的形式我正在使用JavaScript完成这个视频我可以在我的网站上播放视频而无需打开另一个窗口,谢谢
更新
到目前为止我的JavaScriptvar feed = new Instafeed({
clientId: '467ede5a6b9b48ae8e03f4e2582aeeb3',
limit: 16,
get: 'tagged',
tagName: 'teamRousey',
sortBy: 'most-recent',
after: function () {
var images = $("#instafeed").find('a');
$.each(images, function(index, image) {
var delay = (index * 75) + 'ms';
$(image).css('-webkit-animation-delay', delay);
$(image).css('-moz-animation-delay', delay);
$(image).css('-ms-animation-delay', delay);
$(image).css('-o-animation-delay', delay);
$(image).css('animation-delay', delay);
$(image).addClass('animated flipInX');
});
},
template: '<video controls ><source src="{{video}}embed/" type="video/mp4"></video>"<div class="likes">♥ {{likes}}</div>'
});
feed.run();
答案 0 :(得分:4)
我们走了。
jQuery(function($){
var feed = new Instafeed({
clientId: '467ede5a6b9b48ae8e03f4e2582aeeb3',
limit: 16,
get: 'tagged',
tagName: 'teamRousey',
sortBy: 'most-recent',
after: function () {
},
resolution: 'standard_resolution',
filter: function(image) {
if (image.type == 'image') {
image.template = '<img src="' + image.images.standard_resolution.url + '" />';
} else {
image.template = '<video width="100%" controls loop><source src="' + image.videos.standard_resolution.url + '" type="video/mp4"/></video>';
}
return true;
},
template: '<header>{{model.template}}</header><footer><a href="http://instagram.com/{{model.user.username}}">@{{model.user.username}}</a><br>{{caption}}</footer>',
});
feed.run();
});
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://jsonp.afeld.me/?url=http%3A%2F%2Finstafeedjs.com%2Fjs%2Finstafeed.min.js"></script>
<div id="instafeed"></div>
&#13;