フォローボタンは、閲覧者がTwitterアカウントを簡単にフォローできるようにするため、ウェブサイトに表示する小さなボタンです。 フォローボタンは二つのパーツで構成されています: Twitter.com上にあるフォロー用のウェブインテントページへのリンクと 、Twitter公式の見栄えになるようリンクを補強して即座にフォローボタンだと分かるようにするためのTwitterウィジット JavaScriptです。
フォローボタンジェネレータ を使うと、画面フォーム上から操作して簡単にHTMLマークアップを生成し、あなたのウェブサイトのテンプレートにコピーペーストできます。
Follow ButtonThe Follow button is a small button displayed on your websites to help users easily follow a Twitter account. A Follow button consists of two parts: a link to a follow web intent page on Twitter.com and Twitter’s widgets JavaScript to enhance the link with Twitter’s official and easily recognizable Follow button. The Follow button generator is a simple, form-based approach to generate HTML markup you may copy-and-paste into your website template. |
フォローボタンを選ぶと、プロフィル概要やそのアカウントのいくつかの最新ツイートと共にフォローアクションを表示する小ウィンドウが新規にポップアップされます。
閲覧者は、プロフィール概要と共に表示されたフォローアクションをクリックして、指定アカウントからそのツイートをフォローすることができます。
Twitter ユーザーが子ウィンドウでフォローを行うと、あなたのウェブページで follow
イベントが発生します。
Twitterにログインしていない閲覧者は、ログインしてアカウントをフォローするよう促されます。 フォローアクションは、フォロー用インテントのログインの流れの一部として発生します。
User interaction flowSelecting the Follow button will pop open a new child window displaying a follow action alongside a profile summary and a few recent Tweets from the account. The viewer may click on the follow action displayed alongside the profile summary to follow Tweets from the specified account. A Logged out flowA viewer not logged in to Twitter will be prompted to log in to follow the account. A follow action will be triggered as part of the login flow of the follow intent. |
1.TwitterのウィジットJavaScript がエレメントを見つけてツイートボタンへのリンクを補強できるようにするため、twitter-follow-button
クラスの付いたa(アンカー)エレメントを新たに作成します。
<a class="twitter-follow-button" href="https://twitter.com/TwitterDev"> Follow @TwitterDev</a>
2. data-* 属性を使ってフォローボタンのパラメータをカスタマイズします。
<a class="twitter-follow-button" href="https://twitter.com/TwitterDev" data-size="large"> Follow @TwitterDev</a>
3. 読み込み用のコードを使って、非同期にTwitterのウィジットJavaScriptを読み込みます。 このJavaScript コードでは、現在のページに実装された既存の TwitterのウェブウィジットJavaScriptのバージョンを確認し、 ウィジットJavaScript が読み込まれた後にファンクションキューを初期化して実行し、TwitterのCDNから ウィジットJavaScript を非同期に読み込みます。
How to add a Follow button to your website1. Create a new anchor element with a <a class="twitter-follow-button" href="https://twitter.com/TwitterDev"> Follow @TwitterDev</a> 2. Customize Follow button parameters using data-* attributes. <a class="twitter-follow-button" href="https://twitter.com/TwitterDev" data-size="large"> Follow @TwitterDev</a> 3. Asynchronously load Twitter’s widgets JavaScript using our loading snippet. The JavaScript snippet will check for an existing version of Twitter’s widgets JavaScript on the current page, initialize a function queue to be executed once the widgets JavaScript has loaded, and load the widgets JavaScript asynchronously from Twitter’s CDN. |
data-show-count
属性にfalse
の値を設定することで、指定したアカウントをフォローしているTiwtterアカウントの数を非表示にします。
data-show-count 値
|
結果 |
---|---|
(既定) | Follow @TwitterDev |
false
|
Follow @TwitterDev |
data-show-screen-name
属性にfalse
の値を設定することで、表示されるフォローボタンからユーザー名を非表示にします。
data-show-screen-name 値
|
結果 |
---|---|
(既定) | Follow @TwitterDev |
false
|
Follow @TwitterDev |
大き目のフォローボタンを表示するには、large
の値のdata-size
属性を追加します。
data-size value
|
result |
---|---|
(default) | Follow @TwitterDev |
large
|
Follow @TwitterDev |
Button customizationHide followers countHide the number of Twitter accounts following the specified account by setting a
Hide Twitter usernameHide the username from the displayed Follow button by setting a
Display a large buttonAdd a
|