我有一个使用instafeed.js的bootstrap轮播。它有效,但问题是它会跳过一张图片并转到每张奇怪的图片。我的代码是这样的:
我的instafeed.js:
<page>
和我的旋转木马:
$(document).ready(function(){
var feed = new Instafeed({
clientId: 'CLIENT_ID',
accessToken:'ACCESS_TOKEN',
template: '<div class="item"><img src="{{image}}"/></div>',
resolution: 'standard_resolution',
get: 'user',
userId: 2104256781,
after: function () {
$('#instafeed > div:nth-child(1)').addClass('active');
}
});
feed.run();
});
我已经看过堆栈溢出,人们正在打电话给 <div id="myCarousel" class="carousel slide" data-interval="false" data-ride="carousel">
<div class="carousel-inner" id="instafeed">
</div>
</a>
<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
,但我已经尝试到处调用它,但它不起作用。我错过了放置这个位置的地方吗?或者我的代码有问题吗?