[Twitter.jsライブラリ] 一度に表示するつぶやきの表示数を指定する

説明

Twitter.jsライブラリで一度に表示するつぶやきの表示数を指定するにはgetTwitters()の2番目のオプションパラメータのcountにつぶやきを表示したい数を指定します。

サンプルプログラム

【HTML】
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="ja">
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>Sample</title>
<link rel="stylesheet" href="css/main.css" type="text/css" media="all">
<script type="text/javascript" src="js/twitter-1.12.2.js"></script>
<script type="text/javascript" src="js/sample.js"></script>
</head>
<body>
<h1>Googleのつぶやきを表示</h1>
<div id="tweet">
<p>読み込み中です...しばらくお待ち下さい</p>
</div>
</body>
</html>


【sample.js】
getTwitters('tweet', {
id: 'google',
count: 10,
enableLinks: true,
ignoreReplies: true,
clearContents: true,
template: '"%text%" <a href="http://twitter.com/%user_screen_name%/statuses/%id%/">%time%</a>'
});
サンプルを実行
[戻る]