2012-11-12 102 views
1

我無法找到我需要的。總之什麼:動態Twitter的小工具

如果我有一個網站,而且用戶能夠進入他們的Twitter手柄@user - 我如何動態拉回到他們的鳴叫?

微博可以讓你製作自己的小工具,但不是user被調用,它是一個隨機數1494028230983

感謝

回答

1

如果我明白你的問題,那麼我會建議你使用Tweet的jQuery插件,它將根據給定的用戶名從twitter獲取推文的數量。這真的很容易使用。

$(".tweet").tweet({ 
    username: username, 
    join_text: "auto", 
    avatar_size: 32, 
    count: 5, 
    auto_join_text_default: "we said,", 
    auto_join_text_ed: "we", 
    auto_join_text_ing: "we were", 
    auto_join_text_reply: "we replied to", 
    auto_join_text_url: "we were checking out", 
    loading_text: "loading tweets..." 
); 

您可以通過CSS使用class名稱適用風格,像

li{margin:5px 0;border:solid gray 1px;border-radius:2px;} 
li.tweet_odd{ background:#eee;} 
li.tweet_even{ background:#f0fff0;} 
li a.tweet_avatar{float:left;margin-right:5px;} 
li span.tweet_time a{text-decoration:none;color:green} 
li span.tweet_text a{text-decoration:none;color:green} 
li span.tweet_text{color:#333}​ 

欲瞭解更多信息,請查看插件的網站。

Here is an example