リストタイムラインは、抽出したTwitterアカウントの公開リストから、最新のツイートを新しいものから古い順に表示します。 このタイムラインは、ヘッダにはリスト名、説明、抽出者が表示されます。詳細はTwitter リストについて読んでください。
Embedded List TimelineA list timeline displays the latest Tweets ordered from newest to oldest from a curated public list of Twitter accounts. The timeline includes a header displaying the list’s name, description, and curator. Read more about Twitter lists. |
特定の Twitter リストはそれぞれウィジットIDを付けて保存されています。 渡されたウィジットIDで表示するリストを上書きするには、新しいリスト所有者とリストを設定します。
リスト所有者のTwitter ユーザー名や数値型IDをそれぞれ設定するには、 data-list-owner-screen-name
属性やdata-list-owner-id
属性を追加します。
Twitter ユーザーによって抽出されたリストを設定するには、data-list-slug
属性やdata-list-id
属性を追加します。
href属性とフォールバック用のa(アンカー)エレメント内テキストは、そのページに関連するTwitterアカウントを正しく参照するために更新をしておく必要があります。
data-list-owner-screen-name
とdata-list-slug
を使ったテンプレート例:
<a class="twitter-timeline" data-widget-id="{widget_id}" href="https://twitter.com/{screen_name}/lists/{slug}" data-list-owner-screen-name="{screen_name}" data-list-slug="{slug}"> Tweets from https://twitter.com/{screen_name}/lists/{slug} </a>
<a class="twitter-timeline" data-widget-id="600724936517242880" href="https://twitter.com/twitter/lists/official-twitter-accts" data-list-owner-screen-name="twitter" data-list-slug="official-twitter-accts"> Tweets from https://twitter.com/twitter/lists/official-twitter-accts </a>
Override list selectionA specific Twitter list is saved with each widget ID. Specify a new list owner and list to override the list displayed for the passed widget ID. Add a The href attribute and inner text of the fallback anchor element should be updated to accurately reference the Twitter account relevant to the page. A template example using <a class="twitter-timeline" data-widget-id="{widget_id}" href="https://twitter.com/{screen_name}/lists/{slug}" data-list-owner-screen-name="{screen_name}" data-list-slug="{slug}"> Tweets from https://twitter.com/{screen_name}/lists/{slug} </a> <a class="twitter-timeline" data-widget-id="600724936517242880" href="https://twitter.com/twitter/lists/official-twitter-accts" data-list-owner-screen-name="twitter" data-list-slug="official-twitter-accts"> Tweets from https://twitter.com/twitter/lists/official-twitter-accts </a> |
Twitterウィジットの JavaScript ライブラリは、twttr.widgets.createTimeline
関数を使って、埋め込み型ユーザータイムラインの動的挿入をサポートしています。 あなたのページの埋め込み型タイムラインに、ウィジット ID、対象となるcontainer エレメント、任意のカスタムオプションを渡してください。
オプションオブジェクトプロパティとして渡された時、HTML data-* パラメータはキャメルケース表記になります。
twttr.widgets.createTimeline( "600724936517242880", document.getElementById("container"), { listOwnerScreenName: "twitter", listSlug: "official-twitter-accts" } );
JavaScript factory functionTwitter’s widget JavaScript library supports dynamic insertion of an embedded user timeline using the HTML data-* parameters are camelCased when passed as an options object property. twttr.widgets.createTimeline( "600724936517242880", document.getElementById("container"), { listOwnerScreenName: "twitter", listSlug: "official-twitter-accts" } ); |