ボタン Buttons
フォーム、ダイアログなどでのアクション用に、複数のサイズ、状態などをサポートする Bootstrap のカスタムボタンスタイルを使用します。
ベースクラス
Bootstrap には、パディングやコンテンツの配置などの基本的なスタイルを設定する .btn ベースクラスがあります。デフォルトでは、.btn コントロールは透明なボーダーと背景色を持ち、明示的なフォーカスやホバースタイルを持ちません。
<button type="button" class="btn">Base class</button> .btn クラスは、ボタンバリアントと組み合わせて使用するか、独自のカスタムスタイルの基礎として使用することを目的としています。
.btn クラスを単独で使用している場合は、少なくとも明示的な :focus および/または :focus-visible スタイルを定義することを忘れないでください。
バリアント
Bootstrap には、それぞれが独自の意味的な目的を持ついくつかのボタンバリアントが含まれており、より多くの制御のためにいくつかの追加が含まれています。
<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> アクセシビリティのヒント: 色を使用して意味を追加することは視覚的な表示のみを提供し、スクリーンリーダーなどの支援技術のユーザーには伝わりません。意味がコンテンツ自体から明らかであること(例えば、十分な色のコントラストを持つ表示テキスト)を確認するか、.visually-hiddenクラスで非表示にした追加テキストなどの代替手段を通じて含めてください。
テキストの折り返しを無効にする
ボタンのテキストを折り返したくない場合は、ボタンに .text-nowrap クラスを追加できます。Sass では、$btn-white-space: nowrap を設定して各ボタンのテキスト折り返しを無効にできます。
ボタンタグ
.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"> アウトラインボタン
ボタンが必要だが、重厚な背景色は不要ですか?デフォルトの修飾子クラスを .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> 一部のボタンスタイルは比較的明るい前景色を使用しているため、十分なコントラストを得るために暗い背景でのみ使用する必要があります。
サイズ
より大きいまたは小さいボタンをお好みですか?追加のサイズには .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> CSS 変数を使用して独自のカスタムサイズを作成することもできます:
<button type="button" class="btn btn-primary"
style="--bs-btn-padding-y: .25rem; --bs-btn-padding-x: .5rem; --bs-btn-font-size: .75rem;">
Custom button
</button> 無効状態
任意の <button> 要素に disabled ブール属性を追加することで、ボタンを非アクティブに見せます。無効なボタンには pointer-events: none が適用され、ホバーおよびアクティブ状態のトリガーが防止されます。
<button type="button" class="btn btn-primary" disabled>Primary button</button>
<button type="button" class="btn btn-secondary" disabled>Button</button>
<button type="button" class="btn btn-outline-primary" disabled>Primary button</button>
<button type="button" class="btn btn-outline-secondary" disabled>Button</button> <a> 要素を使用した無効なボタンは、少し異なる動作をします:
<a>はdisabled属性をサポートしていないため、視覚的に無効に見えるようにするには.disabledクラスを追加する必要があります。- アンカーボタンのすべての
pointer-eventsを無効にするために、いくつかの将来に対応したスタイルが含まれています。 <a>を使用した無効なボタンには、支援技術に要素の状態を示すためにaria-disabled="true"属性を含める必要があります。<a>を使用した無効なボタンには、href属性を含めるべきではありません。
<a class="btn btn-primary disabled" role="button" aria-disabled="true">Primary link</a>
<a class="btn btn-secondary disabled" role="button" aria-disabled="true">Link</a> リンク機能の注意事項
無効なリンクで href 属性を保持する必要がある場合に対応するため、.disabled クラスは pointer-events: none を使用して <a> のリンク機能を無効にしようとします。この CSS プロパティは HTML に対してまだ標準化されていませんが、すべての最新ブラウザでサポートされています。さらに、pointer-events: none をサポートするブラウザでも、キーボードナビゲーションは影響を受けないため、目の見えるキーボードユーザーと支援技術のユーザーは引き続きこれらのリンクをアクティブにできます。そのため、安全のために、aria-disabled="true" に加えて、これらのリンクに tabindex="-1" 属性を含めてキーボードフォーカスを受け取らないようにし、カスタム JavaScript を使用してそれらの機能を完全に無効にします。
<a href="#" class="btn btn-primary disabled" tabindex="-1" role="button" aria-disabled="true">Primary link</a>
<a href="#" class="btn btn-secondary disabled" tabindex="-1" role="button" aria-disabled="true">Link</a> ブロックボタン
Bootstrap 4 のような全幅の「ブロックボタン」のレスポンシブスタックを、display と gap ユーティリティの組み合わせで作成します。ボタン固有のクラスの代わりにユーティリティを使用することで、スペーシング、配置、およびレスポンシブな動作をより細かく制御できます。
<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> グリッドカラム幅クラスを使用してブロックボタンの幅を調整できます。たとえば、半分の幅の「ブロックボタン」の場合は、.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 ユーティリティとボタンのマージンユーティリティを追加して、ボタンがスタックされなくなったときに右揃えにします。
<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> ボタンプラグイン
ボタンプラグインを使用すると、シンプルなオン/オフトグルボタンを作成できます。
視覚的には、これらのトグルボタンは チェックボックストグルボタン と同じです。ただし、支援技術によって異なる方法で伝えられます: チェックボックストグルはスクリーンリーダーによって「チェックされている」/「チェックされていない」とアナウンスされます (見た目にもかかわらず、基本的にはまだチェックボックスであるため)。一方、これらのトグルボタンは「ボタン」/「ボタンが押されている」とアナウンスされます。これら2つのアプローチのどちらを選択するかは、作成しているトグルのタイプと、チェックボックスとしてアナウンスされたときと実際のボタンとしてアナウンスされたときにユーザーにとって意味があるかどうかによって異なります。
トグル状態
data-bs-toggle="button" を追加してボタンの active 状態を切り替えます。ボタンを事前にトグルする場合は、支援技術に適切に伝えられるように、.active クラスと aria-pressed="true" を手動で追加する必要があります。
<p class="d-inline-flex gap-1">
<button type="button" class="btn" data-bs-toggle="button">Toggle button</button>
<button type="button" class="btn active" data-bs-toggle="button" aria-pressed="true">Active toggle button</button>
<button type="button" class="btn" disabled data-bs-toggle="button">Disabled toggle button</button>
</p>
<p class="d-inline-flex gap-1">
<button type="button" class="btn btn-primary" data-bs-toggle="button">Toggle button</button>
<button type="button" class="btn btn-primary active" data-bs-toggle="button" aria-pressed="true">Active toggle button</button>
<button type="button" class="btn btn-primary" disabled data-bs-toggle="button">Disabled toggle button</button>
</p> <p class="d-inline-flex gap-1">
<a href="#" class="btn" role="button" data-bs-toggle="button">Toggle link</a>
<a href="#" class="btn active" role="button" data-bs-toggle="button" aria-pressed="true">Active toggle link</a>
<a class="btn disabled" aria-disabled="true" role="button" data-bs-toggle="button">Disabled toggle link</a>
</p>
<p class="d-inline-flex gap-1">
<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 class="btn btn-primary disabled" aria-disabled="true" role="button" data-bs-toggle="button">Disabled toggle link</a>
</p> メソッド
ボタンコンストラクタを使用してボタンインスタンスを作成できます。例:
const bsButton = new bootstrap.Button('#myButton')
| Method | Description |
|---|---|
dispose | 要素のボタンを破棄します。(DOM 要素に保存されたデータを削除します) |
getInstance | DOM 要素に関連付けられたボタンインスタンスを取得できる静的メソッドです。次のように使用できます: bootstrap.Button.getInstance(element)。 |
getOrCreateInstance | DOM 要素に関連付けられたボタンインスタンスを返すか、初期化されていない場合は新しいインスタンスを作成する静的メソッドです。次のように使用できます: bootstrap.Button.getOrCreateInstance(element)。 |
toggle | プッシュ状態を切り替えます。ボタンがアクティブ化されたような外観を与えます。 |
たとえば、すべてのボタンを切り替えるには:
document.querySelectorAll('.btn').forEach(buttonElement => {
const button = bootstrap.Button.getOrCreateInstance(buttonElement)
button.toggle()
})
CSS
変数
Added in v5.2.0Bootstrap の進化する CSS 変数アプローチの一部として、ボタンは .btn 上でローカル CSS 変数を使用し、リアルタイムのカスタマイズを強化します。CSS 変数の値は Sass を介して設定されるため、Sass のカスタマイズも引き続きサポートされます。
--#{$prefix}btn-padding-x: #{$btn-padding-x};
--#{$prefix}btn-padding-y: #{$btn-padding-y};
--#{$prefix}btn-font-family: #{$btn-font-family};
@include rfs($btn-font-size, --#{$prefix}btn-font-size);
--#{$prefix}btn-font-weight: #{$btn-font-weight};
--#{$prefix}btn-line-height: #{$btn-line-height};
--#{$prefix}btn-color: #{$btn-color};
--#{$prefix}btn-bg: transparent;
--#{$prefix}btn-border-width: #{$btn-border-width};
--#{$prefix}btn-border-color: transparent;
--#{$prefix}btn-border-radius: #{$btn-border-radius};
--#{$prefix}btn-hover-border-color: transparent;
--#{$prefix}btn-box-shadow: #{$btn-box-shadow};
--#{$prefix}btn-disabled-opacity: #{$btn-disabled-opacity};
--#{$prefix}btn-focus-box-shadow: 0 0 0 #{$btn-focus-width} rgba(var(--#{$prefix}btn-focus-shadow-rgb), .5);
各 .btn-* 修飾子クラスは、button-variant()、button-outline-variant()、および button-size() mixin で追加の CSS ルールを最小限に抑えるために、適切な CSS 変数を更新します。
ドキュメント固有のボタンに対して行うように、Bootstrap の CSS 変数を独自の CSS と Sass 変数の組み合わせで再割り当てして、カスタム .btn-* 修飾子クラスを構築する例を次に示します。
.btn-bd-primary {
--bs-btn-font-weight: 600;
--bs-btn-color: var(--bs-white);
--bs-btn-bg: var(--bd-violet-bg);
--bs-btn-border-color: var(--bd-violet-bg);
--bs-btn-hover-color: var(--bs-white);
--bs-btn-hover-bg: #{shade-color($bd-violet, 10%)};
--bs-btn-hover-border-color: #{shade-color($bd-violet, 10%)};
--bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
--bs-btn-active-color: var(--bs-btn-hover-color);
--bs-btn-active-bg: #{shade-color($bd-violet, 20%)};
--bs-btn-active-border-color: #{shade-color($bd-violet, 20%)};
}
Sass 変数
$btn-color: var(--#{$prefix}body-color);
$btn-padding-y: $input-btn-padding-y;
$btn-padding-x: $input-btn-padding-x;
$btn-font-family: $input-btn-font-family;
$btn-font-size: $input-btn-font-size;
$btn-line-height: $input-btn-line-height;
$btn-white-space: null; // Set to `nowrap` to prevent text wrapping
$btn-padding-y-sm: $input-btn-padding-y-sm;
$btn-padding-x-sm: $input-btn-padding-x-sm;
$btn-font-size-sm: $input-btn-font-size-sm;
$btn-padding-y-lg: $input-btn-padding-y-lg;
$btn-padding-x-lg: $input-btn-padding-x-lg;
$btn-font-size-lg: $input-btn-font-size-lg;
$btn-border-width: $input-btn-border-width;
$btn-font-weight: $font-weight-normal;
$btn-box-shadow: inset 0 1px 0 rgba($white, .15), 0 1px 1px rgba($black, .075);
$btn-focus-width: $input-btn-focus-width;
$btn-focus-box-shadow: $input-btn-focus-box-shadow;
$btn-disabled-opacity: .65;
$btn-active-box-shadow: inset 0 3px 5px rgba($black, .125);
$btn-link-color: var(--#{$prefix}link-color);
$btn-link-hover-color: var(--#{$prefix}link-hover-color);
$btn-link-disabled-color: $gray-600;
// Allows for customizing button radius independently from global border radius
$btn-border-radius: var(--#{$prefix}border-radius);
$btn-border-radius-sm: var(--#{$prefix}border-radius-sm);
$btn-border-radius-lg: var(--#{$prefix}border-radius-lg);
$btn-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
$btn-hover-bg-shade-amount: 15%;
$btn-hover-bg-tint-amount: 15%;
$btn-hover-border-shade-amount: 20%;
$btn-hover-border-tint-amount: 10%;
$btn-active-bg-shade-amount: 20%;
$btn-active-bg-tint-amount: 20%;
$btn-active-border-shade-amount: 25%;
$btn-active-border-tint-amount: 10%;
Sass mixin
ボタンには3つの mixin があります: ボタンとボタンアウトラインバリアント mixin (両方とも $theme-colors に基づく)、およびボタンサイズ mixin です。
@mixin button-variant(
$background,
$border,
$color: color-contrast($background),
$hover-background: if($color == $color-contrast-light, shade-color($background, $btn-hover-bg-shade-amount), tint-color($background, $btn-hover-bg-tint-amount)),
$hover-border: if($color == $color-contrast-light, shade-color($border, $btn-hover-border-shade-amount), tint-color($border, $btn-hover-border-tint-amount)),
$hover-color: color-contrast($hover-background),
$active-background: if($color == $color-contrast-light, shade-color($background, $btn-active-bg-shade-amount), tint-color($background, $btn-active-bg-tint-amount)),
$active-border: if($color == $color-contrast-light, shade-color($border, $btn-active-border-shade-amount), tint-color($border, $btn-active-border-tint-amount)),
$active-color: color-contrast($active-background),
$disabled-background: $background,
$disabled-border: $border,
$disabled-color: color-contrast($disabled-background)
) {
--#{$prefix}btn-color: #{$color};
--#{$prefix}btn-bg: #{$background};
--#{$prefix}btn-border-color: #{$border};
--#{$prefix}btn-hover-color: #{$hover-color};
--#{$prefix}btn-hover-bg: #{$hover-background};
--#{$prefix}btn-hover-border-color: #{$hover-border};
--#{$prefix}btn-focus-shadow-rgb: #{to-rgb(mix($color, $border, 15%))};
--#{$prefix}btn-active-color: #{$active-color};
--#{$prefix}btn-active-bg: #{$active-background};
--#{$prefix}btn-active-border-color: #{$active-border};
--#{$prefix}btn-active-shadow: #{$btn-active-box-shadow};
--#{$prefix}btn-disabled-color: #{$disabled-color};
--#{$prefix}btn-disabled-bg: #{$disabled-background};
--#{$prefix}btn-disabled-border-color: #{$disabled-border};
}
@mixin button-outline-variant(
$color,
$color-hover: color-contrast($color),
$active-background: $color,
$active-border: $color,
$active-color: color-contrast($active-background)
) {
--#{$prefix}btn-color: #{$color};
--#{$prefix}btn-border-color: #{$color};
--#{$prefix}btn-hover-color: #{$color-hover};
--#{$prefix}btn-hover-bg: #{$active-background};
--#{$prefix}btn-hover-border-color: #{$active-border};
--#{$prefix}btn-focus-shadow-rgb: #{to-rgb($color)};
--#{$prefix}btn-active-color: #{$active-color};
--#{$prefix}btn-active-bg: #{$active-background};
--#{$prefix}btn-active-border-color: #{$active-border};
--#{$prefix}btn-active-shadow: #{$btn-active-box-shadow};
--#{$prefix}btn-disabled-color: #{$color};
--#{$prefix}btn-disabled-bg: transparent;
--#{$prefix}btn-disabled-border-color: #{$color};
--#{$prefix}gradient: none;
}
@mixin button-size($padding-y, $padding-x, $font-size, $border-radius) {
--#{$prefix}btn-padding-y: #{$padding-y};
--#{$prefix}btn-padding-x: #{$padding-x};
@include rfs($font-size, --#{$prefix}btn-font-size);
--#{$prefix}btn-border-radius: #{$border-radius};
}
Sass ループ
ボタンバリアント (通常のボタンとアウトラインボタンの両方) は、scss/_buttons.scss で修飾子クラスを生成するために、$theme-colors マップでそれぞれの mixin を使用します。
@each $color, $value in $theme-colors {
.btn-#{$color} {
@if $color == "light" {
@include button-variant(
$value,
$value,
$hover-background: shade-color($value, $btn-hover-bg-shade-amount),
$hover-border: shade-color($value, $btn-hover-border-shade-amount),
$active-background: shade-color($value, $btn-active-bg-shade-amount),
$active-border: shade-color($value, $btn-active-border-shade-amount)
);
} @else if $color == "dark" {
@include button-variant(
$value,
$value,
$hover-background: tint-color($value, $btn-hover-bg-tint-amount),
$hover-border: tint-color($value, $btn-hover-border-tint-amount),
$active-background: tint-color($value, $btn-active-bg-tint-amount),
$active-border: tint-color($value, $btn-active-border-tint-amount)
);
} @else {
@include button-variant($value, $value);
}
}
}
@each $color, $value in $theme-colors {
.btn-outline-#{$color} {
@include button-outline-variant($value);
}
}