2013-10-29 66 views
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> 

回答

0

檢查,以確保它在最新的Twitter API版本的支持。我認爲目前是1.1

相關問題