data-*属性をフォールバック用のa(アンカー)エレメントに追加したり、オプションオブジェクト内の JavaScript ファクトリ機能に渡したりして、埋め込み型タイムラインをカスタマイズします。
Embedded Timeline Parameter ReferenceCustomize an embedded timeline with data-* attributes added to a fallback anchor element or passed to a JavaScript factory function in an options object. |
chrome
トークンをスペース区切りで設定し、タイムラインのディスプレイコンポーネントを削除します。
noheader
- ヘッダを非表示にします
nofooter
- 表示されている場合は、フッタを非表示にします
noborders
- 全ての区切り線を削除します:ウィジットエリアを囲む区切り線、各ツイートごとの区切り線、ツイート内
noscrollbar
-表示される場合に、スクロールバーを非表示にします。
transparent
- 背景色を削除します
サンプル値: transparent noborders
tweet-limit
1 から20 のツイートを持つ拡大タイムラインを表示します。
サンプル値: 5
aria-polite
ウィジットコンポーネントと更新のために、assertive ARIA politeness値を設定します。
サンプル値: assertive
related
このウィジットに関連するTwitterユーザー名を、コンマ区切りの値で提示します。ユーザーがタイムライン上に表示されたツイート書き込みボックスやツイートアクションを選んでツイートを投稿した後に、Twitter はこれらのアカウントをフォローするようユーザーに勧めます。
ユーザー名の後ろに URLエンコードされたコンマとテキストを付けて、そのアカウントがツイートにどのように関連するかを説明をすることができます。
サンプル値: twitter%3ATwitter%20News,twitterapi%3ATwitter%20API%20News
theme
dark
を設定した場合、暗めの背景上に明るめのテキストツイートを表示します。
サンプル値: dark
width
180 ピクセルから 520ピクセルの間で、ウィジットの最大横幅を設定します。
サンプル値: 300
height
ウィジットIDに保存されている値を上書きし、表示されるウィジットの高さを設定します。200ピクセルを超える値でなければなりません。
注意: tweet-limit
パラメータが設定されている場合、heightパラメータは適用されません。
サンプル値: 400
Parameters
chrome
Remove a display component of a timeline with space-separated tokens.
Example Values:
tweet-limit
Display an expanded timeline of between 1 and 20 Tweets. Example Value:
aria-polite
Set an assertive ARIA politeness value for widget components and updates. Example Value:
related
Suggest additional Twitter usernames related to the widget as comma-separated values. Twitter may suggest these accounts to follow after the user posts a Tweet after selecting a Tweet composer or Tweet actions displayed in the timeline. You may provide a brief description of how the account relates to the Tweet with a URL-encoded comma and text after the username. Example Value:
lang
A supported Twitter language code. Loads text components in the specified language. Note: does not affect the text of a Tweet displayed inside a timeline. Example Value:
theme
When set to Example Value:
border-color
Set the color of widget component borders, including the border between Tweets, with a hexadecimal color value. Example Value:
width
Set the maximum width of the widget between 180 and 520 pixels. Example Value:
height
Set the height of a displayed widget, overriding the value stored with the widget ID. Must be greater than 200 pixels. Note: the height parameter does not apply when a Example Value: |
以下のパラメータは、指定したウィジットIDのデータ元を上書きします。
list-owner-screen-name
@usernameによって指定されたTwitterユーザーのTwitterリストを表示します。list-slug
もしくは list-id
で取得されたリストと組み合わせて使わなければなりません。
埋め込み型リストタイムラインに適用されます。
サンプル値: TwitterDev
list-owner-id
IDによって指定されたTwitterユーザーのTwitterリストを表示します。list-slug
もしくは list-id
で取得されたリストと組み合わせて使わなければなりません。
埋め込み型リストタイムラインに適用されます。
サンプル値: 2244994945
list-slug
抽出者によって選ばれた短い識別子を使って Twitter リストを表示します。list-owner-screen-name
もしくは list-owner-id
で取得されたリストと組み合わせて使わなければなりません。
埋め込み型リストタイムラインに適用されます。
サンプル値: national-parks
list-id
Twitterによって割り当てられたユニーク識別子を使ってTwitter リストを表示します。list-owner-screen-name
もしくは list-owner-id
で取得されたリストと組み合わせて使わなければなりません。
埋め込み型リストタイムラインに適用されます。
サンプル値: 207763459
custom-timeline-id
コレクション識別子によって指定されたツイートのコレクションを表示します。
埋め込み型コレクションタイムラインに適用されます。
サンプル値: 539487832448843776
Override ParametersThe following parameters override the data source for the specific widget ID.
screen-name
Display Tweets from a Twitter user specified by @username. Applies to embedded user timelines. Example Value:
user-id
Display Tweets from a Twitter user specified by ID. Applies to embedded user timelines. Example Value:
list-owner-screen-name
Display a Twitter list belonging to a Twitter user specified by @username. Must be paired with a specific list provided by Applies to embedded list timelines. Example Value:
list-owner-id
Display a Twitter list belonging to a Twitter user specified by ID. Must be paired with a specific list provided by Applies to embedded list timelines. Example Value:
list-slug
Display a Twitter list using a short identifier selected by its curator. Must be paired with a list curator provided by Applies to embedded list timelines. Example Value:
list-id
Display a Twitter list using a unique identifier assigned by Twitter. Must be paired with a list curator provided by Applies to embedded list timelines. Example Value:
custom-timeline-id
Display a collection of Tweets specified by a collection identifier. Applies to embedded collection timelines. Example Value: |
<a class="twitter-timeline" data-widget-id="600720083413962752" href="https://twitter.com/TwitterDev" height="400" data-chrome="nofooter" data-link-color="#820bbb" data-border-color="#a80000"> Tweets by @TwitterDev </a>
HTML example<a class="twitter-timeline" data-widget-id="600720083413962752" href="https://twitter.com/TwitterDev" height="400" data-chrome="nofooter" data-link-color="#820bbb" data-border-color="#a80000"> Tweets by @TwitterDev </a> |
twttr.widgets.createTimeline( "600720083413962752", document.getElementById("container"), { height: 400, chrome: "nofooter", linkColor: "#820bbb", borderColor: "#a80000" } );
JavaScript factory exampletwttr.widgets.createTimeline( "600720083413962752", document.getElementById("container"), { height: 400, chrome: "nofooter", linkColor: "#820bbb", borderColor: "#a80000" } ); |