ปุ่ม
ใช้สไตล์ปุ่มแบบกำหนดเองของ Bootstrap สำหรับการดำเนินการในแบบฟอร์ม กล่องโต้ตอบ และอื่นๆ โดยรองรับขนาด สถานะ และอื่นๆ อีกมากมาย
ตัวอย่าง
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>
องค์ประกอบที่ใช้เพื่อทริกเกอร์ฟังก์ชันในหน้าเว็บ (เช่น การยุบเนื้อหา) แทนที่จะลิงก์ไปยังหน้าหรือส่วนใหม่ภายในหน้าปัจจุบัน ลิงก์เหล่านี้ควรให้ 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>
สถานะคนพิการ
ทำให้ปุ่มดูไม่ทำงานโดยเพิ่มdisabled
แอตทริบิวต์บูลีนให้กับ<button>
องค์ประกอบ ใดๆ มีการนำ ปุ่มที่ปิด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
คลาสเพื่อให้ดูเหมือนปิดการใช้งาน- รวมสไตล์ที่เป็นมิตรกับอนาคตไว้เพื่อปิดการใช้งานทั้งหมด
pointer-events
บนปุ่มสมอ - ปุ่มที่ปิดใช้งานควรมี
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>
คำเตือนฟังก์ชั่นการเชื่อมโยง
คลาส.disabled
ใช้pointer-events: none
เพื่อพยายามปิดใช้งานฟังก์ชันลิงก์ของ<a>
s แต่คุณสมบัติ CSS นั้นยังไม่ได้มาตรฐาน นอกจากนี้ แม้ในเบราว์เซอร์ที่รองรับpointer-events: none
การนำทางด้วยแป้นพิมพ์ยังคงไม่ได้รับผลกระทบ หมายความว่าผู้ใช้แป้นพิมพ์ที่มองเห็นได้และผู้ใช้เทคโนโลยีอำนวยความสะดวกจะยังคงสามารถเปิดใช้งานลิงก์เหล่านี้ได้ เพื่อความปลอดภัย นอกเหนือจาก ให้aria-disabled="true"
รวมtabindex="-1"
แอตทริบิวต์ในลิงก์เหล่านี้เพื่อป้องกันไม่ให้รับโฟกัสของแป้นพิมพ์ และใช้ JavaScript ที่กำหนดเองเพื่อปิดใช้งานฟังก์ชันการทำงานทั้งหมด
บล็อคปุ่ม
สร้าง "ปุ่มบล็อก" แบบเต็มความกว้างที่ตอบสนองได้เช่นเดียวกับใน Bootstrap 4 ด้วยการผสมผสานระหว่างการแสดงผลและยูทิลิตี้ช่องว่าง ด้วยการใช้ยูทิลิตี้แทนคลาสเฉพาะของปุ่ม เราสามารถควบคุมการเว้นวรรค การจัดตำแหน่ง และพฤติกรรมการตอบสนองได้ดียิ่งขึ้น
<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>
ปลั๊กอินปุ่ม
ปลั๊กอินปุ่มช่วยให้คุณสร้างปุ่มสลับเปิด/ปิดอย่างง่าย
สลับสถานะ
เพิ่ม เพื่อสลับ สถานะ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>
วิธีการ
คุณสามารถสร้างอินสแตนซ์ปุ่มด้วยตัวสร้างปุ่มได้ เช่น
var button = document.getElementById('myButton')
var bsButton = new bootstrap.Button(button)
วิธี | คำอธิบาย |
---|---|
toggle |
สลับสถานะการกด ให้ปุ่มมีลักษณะที่เปิดใช้งาน |
dispose |
ทำลายปุ่มขององค์ประกอบ (ลบข้อมูลที่เก็บไว้ในองค์ประกอบ DOM) |
getInstance |
วิธีการแบบคงที่ซึ่งช่วยให้คุณได้รับอินสแตนซ์ของปุ่มที่เชื่อมโยงกับองค์ประกอบ DOM คุณสามารถใช้ได้ดังนี้:bootstrap.Button.getInstance(element) |
getOrCreateInstance |
วิธีการแบบคงที่ซึ่งส่งคืนอินสแตนซ์ปุ่มที่เกี่ยวข้องกับองค์ประกอบ DOM หรือสร้างใหม่ในกรณีที่ไม่ได้เริ่มต้น คุณสามารถใช้ได้ดังนี้:bootstrap.Button.getOrCreateInstance(element) |
ตัวอย่างเช่น ในการสลับปุ่มทั้งหมด
var buttons = document.querySelectorAll('.btn')
buttons.forEach(function (button) {
var button = new bootstrap.Button(button)
button.toggle()
})
ซาส
ตัวแปร
$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: $link-color;
$btn-link-hover-color: $link-hover-color;
$btn-link-disabled-color: $gray-600;
// Allows for customizing button radius independently from global border radius
$btn-border-radius: $border-radius;
$btn-border-radius-sm: $border-radius-sm;
$btn-border-radius-lg: $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%;
มิกซ์อิน
มีมิกซ์อินสำหรับปุ่มอยู่สามแบบ: มิกซ์อินแบบปุ่มและโครงร่างปุ่ม (ทั้งสองแบบอิงตาม$theme-colors
) บวกมิกซ์อินขนาดปุ่ม
@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)
) {
color: $color;
@include gradient-bg($background);
border-color: $border;
@include box-shadow($btn-box-shadow);
&:hover {
color: $hover-color;
@include gradient-bg($hover-background);
border-color: $hover-border;
}
.btn-check:focus + &,
&:focus {
color: $hover-color;
@include gradient-bg($hover-background);
border-color: $hover-border;
@if $enable-shadows {
@include box-shadow($btn-box-shadow, 0 0 0 $btn-focus-width rgba(mix($color, $border, 15%), .5));
} @else {
// Avoid using mixin so we can pass custom focus shadow properly
box-shadow: 0 0 0 $btn-focus-width rgba(mix($color, $border, 15%), .5);
}
}
.btn-check:checked + &,
.btn-check:active + &,
&:active,
&.active,
.show > &.dropdown-toggle {
color: $active-color;
background-color: $active-background;
// Remove CSS gradients if they're enabled
background-image: if($enable-gradients, none, null);
border-color: $active-border;
&:focus {
@if $enable-shadows {
@include box-shadow($btn-active-box-shadow, 0 0 0 $btn-focus-width rgba(mix($color, $border, 15%), .5));
} @else {
// Avoid using mixin so we can pass custom focus shadow properly
box-shadow: 0 0 0 $btn-focus-width rgba(mix($color, $border, 15%), .5);
}
}
}
&:disabled,
&.disabled {
color: $disabled-color;
background-color: $disabled-background;
// Remove CSS gradients if they're enabled
background-image: if($enable-gradients, none, null);
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)
) {
color: $color;
border-color: $color;
&:hover {
color: $color-hover;
background-color: $active-background;
border-color: $active-border;
}
.btn-check:focus + &,
&:focus {
box-shadow: 0 0 0 $btn-focus-width rgba($color, .5);
}
.btn-check:checked + &,
.btn-check:active + &,
&:active,
&.active,
&.dropdown-toggle.show {
color: $active-color;
background-color: $active-background;
border-color: $active-border;
&:focus {
@if $enable-shadows {
@include box-shadow($btn-active-box-shadow, 0 0 0 $btn-focus-width rgba($color, .5));
} @else {
// Avoid using mixin so we can pass custom focus shadow properly
box-shadow: 0 0 0 $btn-focus-width rgba($color, .5);
}
}
}
&:disabled,
&.disabled {
color: $color;
background-color: transparent;
}
}
@mixin button-size($padding-y, $padding-x, $font-size, $border-radius) {
padding: $padding-y $padding-x;
@include font-size($font-size);
// Manually declare to provide an override to the browser default
@include border-radius($border-radius, 0);
}
ลูป
ปุ่มรูปแบบต่างๆ (สำหรับปุ่มปกติและปุ่มเค้าร่าง) ใช้มิกซ์อินตามลำดับกับ$theme-colors
แผนที่ของเราเพื่อสร้างคลาสตัวปรับแต่งในscss/_buttons.scss
.
@each $color, $value in $theme-colors {
.btn-#{$color} {
@include button-variant($value, $value);
}
}
@each $color, $value in $theme-colors {
.btn-outline-#{$color} {
@include button-outline-variant($value);
}
}