0
我很久沒有更新我的網站,並且最近才注意到我的推文沒有在我的網站上發生變化,而是正在加載......很多人都說使用Twitter小部件,但我想知道是否JQuery中有另一種方法嗎?如何在我的網站上顯示我的最新3條推文?
這是我使用的代碼:
<script type='text/javascript'>
jQuery(function($){
$("#ticker").tweet({
username: "username example",
page: 1,
avatar_size: 32,
count: 10,
loading_text: "loading ..."
}).bind("loaded", function() {
var ul = $(this).find(".tweet_list");
var ticker = function() {
setTimeout(function() {
ul.find('li:first').animate({marginTop: '-4em'}, 500, function() {
$(this).detach().appendTo(ul).removeAttr('style');
});
ticker();
}, 5000);
};
ticker();
});
});
</script>