0
我想弄清楚如何使用Ajax調用API時如何做無盡的滾動效果。如何在頁面滾動中延遲加載Instagram上的圖片?
現在,它只抓取前20個。我需要抓住前14個,然後一旦用戶到達div的底部,它會得到另外14個(如果還有14個)。
有誰知道我該怎麼做?或者至少當用戶開始滾動時,最好顯示14個等等。
主頁面
<a id="popup" href="https://api.instagram.com/oauth/authorize/?client_id=CLIENT_ID&redirect_uri=http://localhost/instagramAjax.php&response_type=token">
<img src="/images/instagram-login-button.png" />
</a>
<div style="padding:5px;width:340px;border:1px solid black;height:400px;overflow-y:scroll;">
<ul id="photo-list"></ul>
</div>
instagramAjax.php
var token = window.location.href;
token = token.split("#access_token=");
window.opener.instagram(token[1]);
window.close();
的JavaScript
$(document).ready(function() {
$("#popup").click(function(e) {
var url = $(this).attr('href');
e.preventDefault();
window.open(url, 'authWindow', "width=800,height=436");
});
function instagram(value)
{
var token = value;
$.ajax({
type: "GET",
dataType: "jsonp",
url: "https://api.instagram.com/v1/users/self/media/recent?access_token="+token+"",
success: function(e)
{
for (index in e.data) {
$('ul#photo-list').append("<li><img src="+e.data[index].images.standard_resolution.url+" /></li>");
}
}
});
}
});
我可以知道在這段代碼中我需要調用我的函數調用ajax嗎?以及放置此代碼的位置? – user1788736
此代碼是一個補充。你把它放在與問題中的上述代碼相同的腳本中。 @ user1788736 – bryan
這是不明確的 – Caloyski