http://tweet.seaofclouds.com/
アカウント指定(例:atyks)
jQuery(function($){
jQuery('.byAccount').tweet({
join_text: '',
username: 'atyks',
avatar_size: 0,
count: 2,
loading_text: 'つぶやきを読み込んでいます...'
});
});
キーワード指定(例:天神)
jQuery(function($){
jQuery('.byKeyword').tweet({
join_text: '',
query: '天神',
avatar_size: 0,
count: 2,
loading_text: 'つぶやきを読み込んでいます...'
});
});
キーワードOR指定(例:てんじん OR 天神)
jQuery(function($){
jQuery('.byKeywords').tweet({
join_text: '',
query: 'てんじん OR 天神',
avatar_size: 0,
count: 2,
loading_text: 'つぶやきを読み込んでいます...'
});
});
ハッシュタグ指定(例:#tenjin)
jQuery(function($){
jQuery('.byHashtag').tweet({
join_text: '',
query: '#tenjin',
avatar_size: 0,
count: 2,
loading_text: 'つぶやきを読み込んでいます...'
});
});