Buttons (ボタン)
ボタンはフォームやダイアログなどのアクションにカスタムボタンスタイルを利用できます。 サイズや状態管理に対応しています。ボタンの使い方の例を示します。
Examples
いくつかの定義済みのボタンスタイルがあり, それぞれ目的を持っています。
<button type="button" class="btn btn-primary">Primary</button>
<button type="button" class="btn btn-secondary">Secondary</button>
<button type="button" class="btn btn-success">Success</button>
<button type="button" class="btn btn-danger">Danger</button>
<button type="button" class="btn btn-warning">Warning</button>
<button type="button" class="btn btn-info">Info</button>
<button type="button" class="btn btn-light">Light</button>
<button type="button" class="btn btn-dark">Dark</button>
<button type="button" class="btn btn-link">Link</button>
Conveying meaning to assistive technologies
Using color to add meaning only provides a visual indication, which will not be conveyed to users of assistive technologies – such as screen readers. Ensure that information denoted by the color is either obvious from the content itself (e.g. the visible text), or is included through alternative means, such as additional text hidden with the .visually-hidden
class.
Disable text wrapping
ボタンのテキストを折り返したくない場合は、.text-nowrap
クラスをボタンに追加することができます。Sassでは、$btn-white-space: nowrap
を設定することで、各ボタンのテキストの折り返しを無効にすることができます。
Button tags
.btn
クラスは <button>
要素で使用するために設計されていますが、これらのクラスは <a>
や <input>
要素でも使うことができます。
(ブラウザによっては若干異なるレンダリングが適用される場合があります)
現在のページ内で、新しいページやセクションへのリンクではなく、ページ内の機能(コンテンツの折りたたみなど)のトリガーとして使用される <a>
要素に、ボタンクラスを使用する場合、これらのリンクには role="button"
を与え、スクリーンリーダのような支援技術のためにその目的を適切に伝えるべきです。
<a class="btn btn-primary" href="#" role="button">Link</a>
<button class="btn btn-primary" type="submit">Button</button>
<input class="btn btn-primary" type="button" value="Input">
<input class="btn btn-primary" type="submit" value="Submit">
<input class="btn btn-primary" type="reset" value="Reset">
Outline buttons
アウトラインボタン:.btn-outline-*
を適用すると枠線を残してボタンの背景色を透過することができます。
<button type="button" class="btn btn-outline-primary">Primary</button>
<button type="button" class="btn btn-outline-secondary">Secondary</button>
<button type="button" class="btn btn-outline-success">Success</button>
<button type="button" class="btn btn-outline-danger">Danger</button>
<button type="button" class="btn btn-outline-warning">Warning</button>
<button type="button" class="btn btn-outline-info">Info</button>
<button type="button" class="btn btn-outline-light">Light</button>
<button type="button" class="btn btn-outline-dark">Dark</button>
Sizes
ボタンのサイズを .btn-lg
や .btn-sm
を適用すると変更できます。
<button type="button" class="btn btn-primary btn-lg">Large button</button>
<button type="button" class="btn btn-secondary btn-lg">Large button</button>
<button type="button" class="btn btn-primary btn-sm">Small button</button>
<button type="button" class="btn btn-secondary btn-sm">Small button</button>
Disabled state
ボタンを非アクティブに見せるには、<button>
要素に disabled
を追加します。無効化されたボタンには pointer-events: none
が適用され、ホバーやアクティブな状態がトリガーされるのを防ぎます。
<button type="button" class="btn btn-lg btn-primary" disabled>Primary button</button>
<button type="button" class="btn btn-secondary btn-lg" disabled>Button</button>
<a>
要素に対してボタンを非アクティブ にする場合は少し異なります。:
<a>
は disabled 属性をサポートしていません。disabled
クラスを利用する必要があります。- アンカーボタンを無効化したスタイルを含んでいます。ブラウザがその機能をサポートしているのであればカーソルは見えなくなります。
- 無効化するボタンには aria-distabled=”true” 属性をつけてください (スクリーンリーダー用)
- 無効化されたボタンは、補助技術に対する要素の状態を示すために
aria-disabled="true"
属性を含むべきです。
<a href="#" class="btn btn-primary btn-lg disabled" tabindex="-1" role="button" aria-disabled="true">Primary link</a>
<a href="#" class="btn btn-secondary btn-lg disabled" tabindex="-1" role="button" aria-disabled="true">Link</a>
Link functionality caveat
.disabled
クラスは <a>
の機能を使えなくする pointer-events: none
を使用していますが、この CSS プロパティは標準化されていません。
もしブラウザが pointer-events: none
をサポートしていない場合、キーボードナビゲーションが影響を受けず残り続け、キーボードを用いたユーザやスクリーンリーダーなどの補助機能を使ったユーザはこのリンクを開くことができます。
安全のため、これらのリンクに aria-disabled =" true "
に加えて、 tabindex="-1" 属性(キーボードからのフォーカスを防ぐ)をつけ、カスタム JavaScript を用いてこれらの機能を無効にしてください。
Block buttons
display ユーティリティと gap ユーティリティを組み合わせて、Bootstrap4のような全幅の「ブロックボタン」のレスポンシブスタックを作成します。 ボタン固有のクラスの代わりにユーティリティを使用することで、間隔、配置、およびレスポンシブ動作を大幅に制御できます。
<div class="d-grid gap-2">
<button class="btn btn-primary" type="button">Button</button>
<button class="btn btn-primary" type="button">Button</button>
</div>
レスポンシブのバリエーションです。ブラウザのサイズを変更して、確認してみてください。md
ブレークポイントまで、 .d-md-block
が .d-grid
クラスを置き換え、gap-2
ユーティリティを無効にします。
<div class="d-grid gap-2 d-md-block">
<button class="btn btn-primary" type="button">Button</button>
<button class="btn btn-primary" type="button">Button</button>
</div>
grid column を使用して、ブロックボタンの幅を調整できます。たとえば、半分の幅の “block button” の場合は、 .col-6
を使用します。 .mx-auto
も水平方向に中央揃えにします。
<div class="d-grid gap-2 col-6 mx-auto">
<button class="btn btn-primary" type="button">Button</button>
<button class="btn btn-primary" type="button">Button</button>
</div>
追加のユーティリティを使用して、水平の場合のボタンの配置を調整できます。 前のレスポンシブな例を取り上げ、ボタンにいくつかのflex ユーティリティ と margin ユーティリティ を追加して、ボタンがスタックされなくなったときにボタンが右揃えになります。
<div class="d-grid gap-2 d-md-flex justify-content-md-end">
<button class="btn btn-primary me-md-2" type="button">Button</button>
<button class="btn btn-primary" type="button">Button</button>
</div>
Button plugin
ボタンのプラグインでは、シンプルなオン/オフのトグルボタンを作成することができます。
Toggle states
data-bs-toggle =" button "
を追加して, ボタンの active
状態を切り替えます。事前に切り替える場合は, .active
クラスとaria-pressed = "true"
を追加して, スクリーンリーダーに適切に伝達されるようにする必要があります。
<button type="button" class="btn btn-primary" data-bs-toggle="button" autocomplete="off">Toggle button</button>
<button type="button" class="btn btn-primary active" data-bs-toggle="button" autocomplete="off" aria-pressed="true">Active toggle button</button>
<button type="button" class="btn btn-primary" disabled data-bs-toggle="button" autocomplete="off">Disabled toggle button</button>
<a href="#" class="btn btn-primary" role="button" data-bs-toggle="button">Toggle link</a>
<a href="#" class="btn btn-primary active" role="button" data-bs-toggle="button" aria-pressed="true">Active toggle link</a>
<a href="#" class="btn btn-primary disabled" tabindex="-1" aria-disabled="true" role="button" data-bs-toggle="button">Disabled toggle link</a>
Methods
ボタンのインスタンスは、例えばボタンのコンストラクタを使って作成することができます。
var button = document.getElementById('myButton')
var bsButton = new bootstrap.Button(button)
Method | Description |
---|---|
toggle
|
プッシュ状態を切り替えます。ボタンがアクティブになったように見せます。 |
dispose
|
ボタン要素を破棄します。 |
例えば、すべてのボタンをトグルする例は下記です。
var buttons = document.querySelectorAll('.btn')
buttons.forEach(function (button) {
var button = new bootstrap.Button(button)
button.toggle()
})