0
我試圖打造出來的東西potomak的jQuery的Instagram的JS代碼,我把它當做是... here是代碼:如何插入在potomak/jQuery的Instagram的一個自動重載
和here是我怎麼叫它(第二個與「更多」按鈕..)
有人可以請告訴我如何插入自動刷新每X秒的照片流..?
我試圖打造出來的東西potomak的jQuery的Instagram的JS代碼,我把它當做是... here是代碼:如何插入在potomak/jQuery的Instagram的一個自動重載
和here是我怎麼叫它(第二個與「更多」按鈕..)
有人可以請告訴我如何插入自動刷新每X秒的照片流..?
試着這麼做:
function hipsterPictures() {
var clientId = 'xxx';
var loading = '<div class="loading">Loading...</div>';
$(".instagram.tag").html(loading).instagram({
hash: 'hipster',
show: 5,
clientId: clientId,
onComplete: function() {
$(".instagram.tag .loading").remove();
}
});
}
hipsterPictures();
setInterval(function() {
hipsterPictures();
}, 10000);
見demo。