ข้ามไปที่เนื้อหาหลัก ข้ามไปที่การนำทางเอกสาร
in English

พื้นหลัง

สื่อความหมายผ่านbackground-colorและเพิ่มการตกแต่งด้วยการไล่ระดับสี

สีพื้นหลัง

คล้ายกับคลาสสีข้อความตามบริบท ตั้งค่าพื้นหลังขององค์ประกอบเป็นคลาสตามบริบทใดๆ ยูทิลิตี้พื้นหลังไม่ได้ตั้งค่าcolorดังนั้นในบางกรณี คุณจะต้องการใช้.text-* ยูทิลิตี้สี

.bg-primary
.bg-รอง
.bg-ความสำเร็จ
.bg-อันตราย
.bg-คำเตือน
.bg-info
.bg-light
.bg-dark
.bg-body
.bg-ขาว
.bg-โปร่งใส
<div class="p-3 mb-2 bg-primary text-white">.bg-primary</div>
<div class="p-3 mb-2 bg-secondary text-white">.bg-secondary</div>
<div class="p-3 mb-2 bg-success text-white">.bg-success</div>
<div class="p-3 mb-2 bg-danger text-white">.bg-danger</div>
<div class="p-3 mb-2 bg-warning text-dark">.bg-warning</div>
<div class="p-3 mb-2 bg-info text-dark">.bg-info</div>
<div class="p-3 mb-2 bg-light text-dark">.bg-light</div>
<div class="p-3 mb-2 bg-dark text-white">.bg-dark</div>
<div class="p-3 mb-2 bg-body text-dark">.bg-body</div>
<div class="p-3 mb-2 bg-white text-dark">.bg-white</div>
<div class="p-3 mb-2 bg-transparent text-dark">.bg-transparent</div>

พื้นหลังไล่ระดับ

โดยการเพิ่ม.bg-gradientคลาส การไล่ระดับสีเชิงเส้นจะถูกเพิ่มเป็นภาพพื้นหลังให้กับพื้นหลัง การไล่ระดับสีนี้เริ่มต้นด้วยสีขาวกึ่งโปร่งแสงซึ่งจางลงไปที่ด้านล่าง

คุณต้องการการไล่ระดับสีใน CSS ที่กำหนดเองของคุณหรือไม่? แค่เพิ่มbackground-image: var(--bs-gradient);.

.bg-primary.bg-gradient
.bg-secondary.bg-gradient
.bg-success.bg-gradient
.bg-danger.bg-gradient
.bg-warning.bg-gradient
.bg-info.bg-gradient
.bg-light.bg-gradient
.bg-dark.bg-gradient

ความทึบ

เพิ่มใน v5.1.0

ตั้งแต่ v5.1.1.0 background-colorยูทิลิตี้จะถูกสร้างขึ้นด้วย Sass โดยใช้ตัวแปร CSS ซึ่งช่วยให้เปลี่ยนสีตามเวลาจริงโดยไม่ต้องคอมไพล์และเปลี่ยนความโปร่งใสของอัลฟ่าแบบไดนามิก

มันทำงานอย่างไร

พิจารณา.bg-successยูทิลิตี้ เริ่มต้นของเรา

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

เราใช้เวอร์ชัน RGB ของตัวแปร CSS ของเรา--bs-success(มีค่าเป็น25, 135, 84) และแนบตัวแปร CSS ตัวที่สอง--bs-bg-opacityเพื่อความโปร่งใสของอัลฟ่า (ด้วยค่าเริ่มต้น1ด้วยตัวแปร CSS ในเครื่อง) ซึ่งหมายความว่าเมื่อใดก็ตามที่คุณใช้.bg-successตอนนี้ ค่าที่คำนวณได้ของคุณcolorคือ rgba(25, 135, 84, 1)ตัวแปร CSS ในเครื่องในแต่ละ.bg-*คลาสจะหลีกเลี่ยงปัญหาการสืบทอด ดังนั้นอินสแตนซ์ที่ซ้อนกันของยูทิลิตี้จะไม่มีการเปลี่ยนแปลงอัลฟ่าโปร่งใสโดยอัตโนมัติ

ตัวอย่าง

หากต้องการเปลี่ยนความทึบ ให้แทนที่--bs-bg-opacityด้วยสไตล์ที่กำหนดเองหรือสไตล์อินไลน์

นี่คือพื้นหลังความสำเร็จเริ่มต้น
นี่คือพื้นหลังความสำเร็จของความทึบ 50%
<div class="bg-success p-2 text-white">This is default success background</div>
<div class="bg-success p-2" style="--bs-bg-opacity: .5;">This is 50% opacity success background</div>

หรือเลือกจาก.bg-opacityยูทิลิตี้ใดก็ได้:

นี่คือพื้นหลังความสำเร็จเริ่มต้น
นี่คือพื้นหลังความสำเร็จของความทึบ 75%
นี่คือพื้นหลังความสำเร็จของความทึบ 50%
นี่คือพื้นหลังความสำเร็จของความทึบ 25%
นี่คือพื้นหลังความสำเร็จของความทึบ 10%
<div class="bg-success p-2 text-white">This is default success background</div>
<div class="bg-success p-2 text-white bg-opacity-75">This is 75% opacity success background</div>
<div class="bg-success p-2 text-dark bg-opacity-50">This is 50% opacity success background</div>
<div class="bg-success p-2 text-dark bg-opacity-25">This is 25% opacity success background</div>
<div class="bg-success p-2 text-dark bg-opacity-10">This is 10% opacity success background</div>

ซาส

นอกเหนือจากฟังก์ชัน Sass ต่อไปนี้แล้ว ให้พิจารณาอ่านเกี่ยวกับคุณสมบัติที่กำหนดเองของ CSS ที่ รวมอยู่ด้วย (หรือที่เรียกว่าตัวแปร CSS) สำหรับสีและอื่นๆ

ตัวแปร

ยูทิลิตี้ ส่วนใหญ่background-colorสร้างโดยสีของธีม ซึ่งกำหนดใหม่จากตัวแปรจานสีทั่วไปของเรา

$blue:    #0d6efd;
$indigo:  #6610f2;
$purple:  #6f42c1;
$pink:    #d63384;
$red:     #dc3545;
$orange:  #fd7e14;
$yellow:  #ffc107;
$green:   #198754;
$teal:    #20c997;
$cyan:    #0dcaf0;
$primary:       $blue;
$secondary:     $gray-600;
$success:       $green;
$info:          $cyan;
$warning:       $yellow;
$danger:        $red;
$light:         $gray-100;
$dark:          $gray-900;
$gradient: linear-gradient(180deg, rgba($white, .15), rgba($white, 0));

เฉดสีเทาก็มีให้เช่นกัน แต่จะมีเพียงชุดย่อยเท่านั้นที่ใช้เพื่อสร้างยูทิลิตี้ใดๆ

$white:    #fff;
$gray-100: #f8f9fa;
$gray-200: #e9ecef;
$gray-300: #dee2e6;
$gray-400: #ced4da;
$gray-500: #adb5bd;
$gray-600: #6c757d;
$gray-700: #495057;
$gray-800: #343a40;
$gray-900: #212529;
$black:    #000;

แผนที่

สีของธีมจะถูกใส่ลงในแผนที่ Sass เพื่อให้เราสามารถวนซ้ำเพื่อสร้างยูทิลิตี้ ตัวปรับแต่งส่วนประกอบ และอื่นๆ

$theme-colors: (
  "primary":    $primary,
  "secondary":  $secondary,
  "success":    $success,
  "info":       $info,
  "warning":    $warning,
  "danger":     $danger,
  "light":      $light,
  "dark":       $dark
);

สีเทายังมีอยู่ในแผนที่ Sass แผนที่นี้ไม่ได้ใช้เพื่อสร้างยูทิลิตี้ใดๆ

$grays: (
  "100": $gray-100,
  "200": $gray-200,
  "300": $gray-300,
  "400": $gray-400,
  "500": $gray-500,
  "600": $gray-600,
  "700": $gray-700,
  "800": $gray-800,
  "900": $gray-900
);

สี RGB ถูกสร้างขึ้นจากแผนที่ Sass ที่แยกจากกัน:

$theme-colors-rgb: map-loop($theme-colors, to-rgb, "$value");

และความทึบของสีพื้นหลังสร้างขึ้นด้วยแผนที่ของตัวเองซึ่งถูกใช้โดยยูทิลิตี้ API:

$utilities-bg: map-merge(
  $utilities-colors,
  (
    "black": to-rgb($black),
    "white": to-rgb($white),
    "body": to-rgb($body-bg)
  )
);
$utilities-bg-colors: map-loop($utilities-bg, rgba-css-var, "$key", "bg");

มิกซ์อิน

ไม่มีการใช้มิกซ์อินเพื่อสร้างยูทิลิตี้พื้นหลังของเราแต่เรามีมิกซ์อินเพิ่มเติมสำหรับสถานการณ์อื่นๆ ที่คุณต้องการสร้างการไล่ระดับสีของคุณเอง

@mixin gradient-bg($color: null) {
  background-color: $color;

  @if $enable-gradients {
    background-image: var(--#{$variable-prefix}gradient);
  }
}
// Horizontal gradient, from left to right
//
// Creates two color stops, start and end, by specifying a color and position for each color stop.
@mixin gradient-x($start-color: $gray-700, $end-color: $gray-800, $start-percent: 0%, $end-percent: 100%) {
  background-image: linear-gradient(to right, $start-color $start-percent, $end-color $end-percent);
}

// Vertical gradient, from top to bottom
//
// Creates two color stops, start and end, by specifying a color and position for each color stop.
@mixin gradient-y($start-color: $gray-700, $end-color: $gray-800, $start-percent: null, $end-percent: null) {
  background-image: linear-gradient(to bottom, $start-color $start-percent, $end-color $end-percent);
}

@mixin gradient-directional($start-color: $gray-700, $end-color: $gray-800, $deg: 45deg) {
  background-image: linear-gradient($deg, $start-color, $end-color);
}

@mixin gradient-x-three-colors($start-color: $blue, $mid-color: $purple, $color-stop: 50%, $end-color: $red) {
  background-image: linear-gradient(to right, $start-color, $mid-color $color-stop, $end-color);
}

@mixin gradient-y-three-colors($start-color: $blue, $mid-color: $purple, $color-stop: 50%, $end-color: $red) {
  background-image: linear-gradient($start-color, $mid-color $color-stop, $end-color);
}

@mixin gradient-radial($inner-color: $gray-700, $outer-color: $gray-800) {
  background-image: radial-gradient(circle, $inner-color, $outer-color);
}

@mixin gradient-striped($color: rgba($white, .15), $angle: 45deg) {
  background-image: linear-gradient($angle, $color 25%, transparent 25%, transparent 50%, $color 50%, $color 75%, transparent 75%, transparent);
}

ยูทิลิตี้ API

ยูทิลิตี้พื้นหลังได้รับการประกาศในยูทิลิตี้ API ของเราในscss/_utilities.scss. เรียนรู้วิธีใช้ยูทิลิตี้ API

    "background-color": (
      property: background-color,
      class: bg,
      local-vars: (
        "bg-opacity": 1
      ),
      values: map-merge(
        $utilities-bg-colors,
        (
          "transparent": transparent
        )
      )
    ),
    "bg-opacity": (
      css-var: true,
      class: bg-opacity,
      values: (
        10: .1,
        25: .25,
        50: .5,
        75: .75,
        100: 1
      )
    ),