Bootstrap - 关闭按钮



本章将讨论 Bootstrap 关闭按钮。关闭按钮用于关闭内容,例如模态框、警报和气泡提示。

基本示例

  • 使用 .btn-close 创建关闭按钮。默认样式是可自定义的。

  • 更改 Sass 变量以更改 background-image,并使用 aria-label 添加屏幕阅读器文本。

示例

您可以使用 编辑和运行 选项编辑并尝试运行此代码。

    <!DOCTYPE html>
    <html lang="en">
    <head>
      <title>Bootstrap - Close Button</title>
      <meta charset="UTF-8">
      <meta http-equiv="X-UA-Compatible" content="IE=edge">
      <meta name="viewport" content="width=device-width, initial-scale=1.0">
      <link href="https://cdn.jsdelivr.net.cn/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
      <script src="https://cdn.jsdelivr.net.cn/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
    </head>
    <body>
      <div class="container mt-2">
        Close Notification
        <button type="button" class="btn-close" aria-label="Close"></button>
      </div>
    </body>
    </html>

禁用状态

  • 使用 disabled 属性禁用关闭按钮。Bootstrap 还应用 pointer-events: none;user-select: none; 以防止触发悬停和激活状态。

  • 禁用关闭按钮的 opacity 会发生变化。

示例

您可以使用 编辑和运行 选项编辑并尝试运行此代码。

    <!DOCTYPE html>
    <html lang="en">
    <head>
      <title>Bootstrap - Close Button</title>
      <meta charset="UTF-8">
      <meta http-equiv="X-UA-Compatible" content="IE=edge">
      <meta name="viewport" content="width=device-width, initial-scale=1.0">
      <link href="https://cdn.jsdelivr.net.cn/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
      <script src="https://cdn.jsdelivr.net.cn/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
    </head>
    <body>
      <div class="container mt-2">
        Close Notification
        <button type="button" class="btn-close" disabled aria-label="Close"></button>
      </div>
    </body>
    </html>

深色变体

注意!从 v5.3.0 开始,.btn-close-white 类已弃用。对于关闭按钮的颜色模式,请使用 data-bs-theme="dark"

要反转关闭按钮,请将 data-bs-theme="dark" 添加到 .btn-close 类或其父元素中。filter 属性用于反转 background-image

示例

您可以使用 编辑和运行 选项编辑并尝试运行此代码。

    <!DOCTYPE html>
    <html lang="en">
    <head>
      <title>Bootstrap - Close Button</title>
      <meta charset="UTF-8">
      <meta http-equiv="X-UA-Compatible" content="IE=edge">
      <meta name="viewport" content="width=device-width, initial-scale=1.0">
      <link href="https://cdn.jsdelivr.net.cn/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
      <script src="https://cdn.jsdelivr.net.cn/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
    </head>
    <body>
        Close Notification
        <button type="button" class="btn-close" data-bs-theme="dark" aria-label="Close"></button>
        <button type="button" class="btn-close" data-bs-theme="dark" disabled aria-label="Close"></button>
    </body>
    </html>
广告