第28節 Bootstrap5吐司消息Toasts組件用法

      On this page

      28.1 吐司消息(Toasts)示例

      吐司(Toasts)是一種輕量級通知,旨在模仿移動和桌面操作系統已經普及的推送通知。它們是用flexbox構建的,所以它們很容易對齊和定位。

      和彈出提示一樣,吐司消息也需要自己初始化,不知為什么官網的初始化方法無效,我在國外網站找到一個可行的方法。

      <!doctype html>
      <html lang="zh-CN">
        <head>
          <meta charset="utf-8">
          <meta name="viewport" content="width=device-width, initial-scale=1">
          <meta name="keywords" content="">
          <meta name="description" content="">
          <link href="../bootstrap5/bootstrap.min.css" rel="stylesheet">
          <title>Popovers</title>
        </head>
        <body>
          <div class="container">
              <br><br><br><br>
              <button type="button" class="btn btn-primary" id="liveToastBtn">顯示吐司消息</button>
              <div class="position-fixed bottom-0 end-0 p-3" style="z-index: 5">
                <div id="liveToast" class="toast hide" data-bs-animation="false" role="alert" aria-live="assertive" aria-atomic="true">
                  <div class="toast-header">
                  <strong class="me-auto">吐司消息提示</strong>
                  <small>11 mins ago</small>
                  <button type="button" class="btn-close" data-bs-dismiss="toast" aria-label="Close"></button>
                  </div>
                  <div class="toast-body">
                  你有一條短消息!
                  </div>
                </div>
              </div>
      
            </div>
           <script src="../bootstrap5/bootstrap.bundle.min.js" ></script>
           <script>
            document.querySelector("#liveToastBtn").onclick = function() {
              new bootstrap.Toast(document.querySelector('.toast')).show();
            }
         </script>
        </body>
      </html>
      復制代碼

      3.1.jpg

      28.2 設置選項

      選項可以透過數據屬性或是JavaScript傳遞。對于數據屬性,將選項名稱附加到data-bs-,如:data-bs-animation=""。

      • data-bs-animation="true" 在吐司應用CSS fade轉換效果
      • data-bs-autohide="true" 自動將吐司隱藏
      • data-bs-delay="5000" ,延遲隱藏吐司5s(默認單位毫秒)

      以上值為默認值,如果你對磨人的效果滿意,根本不需要寫那個,27.3.1例子中,我設置了data-bs-autohide="false"設置不自動將吐司隱藏,這樣好方便截圖,否則鼠標只要在任何地方一點,消息框就消失了。

      28.3 半透明的

      吐司也可以是半透明的,因此能混合在它們可能出現的任何東西上。在支持CSS屬性backdrop-filter的瀏覽器,還會嘗試對吐司下方的元素進行模糊效果。

      <!doctype html>
      <html lang="zh-CN">
        <head>
          <meta charset="utf-8">
          <meta name="viewport" content="width=device-width, initial-scale=1">
          <meta name="keywords" content="">
          <meta name="description" content="">
          <link href="../bootstrap5/bootstrap.min.css" rel="stylesheet">
          <title>吐司消息</title>
        </head>
        <body>
          <div class="container">
              <br><br><br><br>
              <button type="button" class="btn btn-primary" id="liveToastBtn">顯示吐司消息</button>
              <div class="toast" role="alert" aria-live="assertive" aria-atomic="true">
                <div class="toast-header">
                <strong class="me-auto">半透明吐司</strong>
                <small class="text-muted">11 mins ago</small>
                <button type="button" class="btn-close" data-bs-dismiss="toast" aria-label="Close"></button>
                </div>
                <div class="toast-body">
                  你有一條短消息!
                </div>
                </div>
      
            </div>
           <script src="../bootstrap5/bootstrap.bundle.min.js" ></script>
           <script>
            document.querySelector("#liveToastBtn").onclick = function() {
              new bootstrap.Toast(document.querySelector('.toast')).show();
            }
         </script>
        </body>
      </html>
      復制代碼

      2.jpg

      28.4 堆疊

      可以透過將吐司包裝于toast-container容器來推疊它們,這將會在垂直方向上增加一些間距。

      <!doctype html>
      <html lang="zh-CN">
        <head>
          <meta charset="utf-8">
          <meta name="viewport" content="width=device-width, initial-scale=1">
          <meta name="keywords" content="">
          <meta name="description" content="">
          <link href="../bootstrap5/bootstrap.min.css" rel="stylesheet">
          <title>吐司消息</title>
        </head>
        <body>
          <div class="container">
              <br><br><br><br>
              <button type="button" class="btn btn-primary" id="liveToastBtn1">顯示吐司消息1</button>
              <button type="button" class="btn btn-primary" id="liveToastBtn2">顯示吐司消息2</button>
              <div class="toast-container">
                <div class="toast" id="toast1" role="alert" aria-live="assertive" aria-atomic="true">
                <div class="toast-header">
                <strong class="me-auto">吐司消息</strong>
                <small class="text-muted">剛剛發送</small>
                <button type="button" class="btn-close" data-bs-dismiss="toast" aria-label="Close"></button>
                </div>
                <div class="toast-body">
                第一條消息
                </div>
                </div>
                
                <div class="toast"  id="toast2" role="alert" aria-live="assertive" aria-atomic="true">
                <div class="toast-header">
                <strong class="me-auto">吐司消息</strong>
                <small class="text-muted">2分鐘前</small>
                <button type="button" class="btn-close" data-bs-dismiss="toast" aria-label="Close"></button>
                </div>
                <div class="toast-body">
                  第二條消息
                </div>
                </div>
              </div>
      
            </div>
           <script src="../bootstrap5/bootstrap.bundle.min.js" ></script>
           <script>
             document.querySelector("#liveToastBtn1").onclick = function() {
              new bootstrap.Toast(document.querySelector('#toast1')).show();
            }
            document.querySelector("#liveToastBtn2").onclick = function() {
              new bootstrap.Toast(document.querySelector('#toast2')).show();
            }
         </script>
        </body>
      </html>
      復制代碼

      4.jpg

      28.5 自定義內容

      透過移除子元件、調整通用類或是增加標記以自定義吐司。

      <!doctype html>
      <html lang="zh-CN">
        <head>
          <meta charset="utf-8">
          <meta name="viewport" content="width=device-width, initial-scale=1">
          <meta name="keywords" content="">
          <meta name="description" content="">
          <link href="../bootstrap5/bootstrap.min.css" rel="stylesheet">
          <title>吐司消息</title>
        </head>
        <body>
          <div class="container">
              <br><br><br><br>
              <button type="button" class="btn btn-primary" id="liveToastBtn">顯示吐司消息</button>
              <div class="toast" role="alert" aria-live="assertive" aria-atomic="true">
                  <div class="toast-body">
                  邀請你穿越到三國!
                  <div class="mt-2 pt-2 border-top">
                  <button type="button" class="btn btn-primary btn-sm">接受邀請</button>
                  <button type="button" class="btn btn-secondary btn-sm" data-bs-dismiss="toast">關閉</button>
                  </div>
                  </div>
               </div>
      
            </div>
           <script src="../bootstrap5/bootstrap.bundle.min.js" ></script>
           <script>
            document.querySelector("#liveToastBtn").onclick = function() {
              new bootstrap.Toast(document.querySelector('.toast')).show();
            }
         </script>
        </body>
      </html>
      復制代碼

      5.jpg

      28.6 配色方案

      基于以上的示例,您也可以透過我們的顏色通用類別建立不同的吐司配色方案。以下我們將bg-danger與text-white添加到toast,再把text-white添加到關閉按鈕上。為了讓邊緣清晰顯示,透過border-0移除了預設的邊框。

      <!doctype html>
      <html lang="zh-CN">
        <head>
          <meta charset="utf-8">
          <meta name="viewport" content="width=device-width, initial-scale=1">
          <meta name="keywords" content="">
          <meta name="description" content="">
          <link href="../bootstrap5/bootstrap.min.css" rel="stylesheet">
          <title>吐司消息</title>
        </head>
        <body>
          <div class="container">
              <br><br><br><br>
              <button type="button" class="btn btn-primary" id="liveToastBtn">顯示吐司消息</button>
      
              <div class="toast align-items-center text-white bg-danger border-0" role="alert" aria-live="assertive" aria-atomic="true">
                  <div class="d-flex">
                  <div class="toast-body">
                  這里是紅色背景的
                  </div>
                  <button type="button" class="btn-close btn-close-white me-2 m-auto" data-bs-dismiss="toast" aria-label="Close"></button>
                  </div>
              </div>
      
            </div>
           <script src="../bootstrap5/bootstrap.bundle.min.js" ></script>
           <script>
            document.querySelector("#liveToastBtn").onclick = function() {
              new bootstrap.Toast(document.querySelector('.toast')).show();
            }
         </script>
        </body>
      </html>
      復制代碼

      6.jpg

      28.7 設置顯示位置

      默認吐司消息顯示在瀏覽器右下角,根據需求,使用自定義的CSS指定吐司位置。右上角通常用于通知,頂部的中間也是如此。如果您一次只要展示一個吐司,請將定位樣式放在toast上。

      <form>
      <div class="mb-3">
      <label for="selectToastPlacement">Toast placement</label>
      <select class="form-select mt-2" id="selectToastPlacement">
      <option value="" selected>Select a position...</option>
      <option value="top-0 start-0">Top left</option>
      <option value="top-0 start-50 translate-middle-x">Top center</option>
      <option value="top-0 end-0">Top right</option>
      <option value="top-50 start-0 translate-middle-y">Middle left</option>
      <option value="top-50 start-50 translate-middle">Middle center</option>
      <option value="top-50 end-0 translate-middle-y">Middle right</option>
      <option value="bottom-0 start-0">Bottom left</option>
      <option value="bottom-0 start-50 translate-middle-x">Bottom center</option>
      <option value="bottom-0 end-0">Bottom right</option>
      </select>
      </div>
      </form>
      <div aria-live="polite" aria-atomic="true" class="bg-dark position-relative bd-example-toasts">
      <div class="toast-container position-absolute p-3" id="toastPlacement">
      <div class="toast">
      <div class="toast-header">
        <img src="..." class="rounded me-2" alt="...">
        <strong class="me-auto">Bootstrap</strong>
        <small>11 mins ago</small>
      </div>
      <div class="toast-body">
        Hello, world! This is a toast message.
      </div>
      </div>
      </div>
      </div>
      復制代碼

      上面是官方例子,Bootstrap5 Toasts我也沒找到其中驅動的js代碼。不過可以給大家參考一下,有興趣的可以去研究一下,在這里我根據上面的代碼,修改了個顯示在左上角的。

      <!doctype html>
      <html lang="zh-CN">
        <head>
          <meta charset="utf-8">
          <meta name="viewport" content="width=device-width, initial-scale=1">
          <meta name="keywords" content="">
          <meta name="description" content="">
          <link href="../bootstrap5/bootstrap.min.css" rel="stylesheet">
          <title>吐司消息</title>
        </head>
        <body>
          <div class="container">
              <br><br><br><br>
              <button type="button" class="btn btn-primary" id="liveToastBtn">顯示吐司消息</button>
              <div class="position-fixed top-0 start-0 p-3" style="z-index: 5">
                <div id="liveToast" class="toast hide" data-bs-animation="false" role="alert" aria-live="assertive" aria-atomic="true">
                  <div class="toast-header">
                  <strong class="me-auto">吐司消息提示</strong>
                  <small>11 mins ago</small>
                  <button type="button" class="btn-close" data-bs-dismiss="toast" aria-label="Close"></button>
                  </div>
                  <div class="toast-body">
                  你有一條短消息!
                  </div>
                </div>
              </div>
      
            </div>
           <script src="../bootstrap5/bootstrap.bundle.min.js" ></script>
           <script>
            document.querySelector("#liveToastBtn").onclick = function() {
              new bootstrap.Toast(document.querySelector('.toast')).show();
            }
         </script>
        </body>
      </html>
      復制代碼

      7.jpg

      今天的課程就到這里,請關注我,及時學習 俺老劉原創的《Bootstrap5零基礎到精通》第29節 Bootstrap5 讀取圖標Spinners組件用法。

      如果這篇文章對你有幫助,記得隨手點贊哦!

      返回頂部
      主站蜘蛛池模板: 无码人妻一区二区三区免费手机 | 日产一区日产2区| 精品人体无码一区二区三区| 亚洲国产日韩一区高清在线| 无码AV一区二区三区无码| 国产成人一区二区三区| 97av麻豆蜜桃一区二区| 国产一区二区三区不卡观| 一区二区三区免费高清视频| 日本无卡码免费一区二区三区| 亚洲综合一区二区精品久久| 国产AV午夜精品一区二区入口 | 亚洲AV无码一区二区三区国产| 亚洲中文字幕一区精品自拍| 精品无码一区二区三区爱欲| 免费看一区二区三区四区| 成人一区二区免费视频| 一区二区国产精品| 全国精品一区二区在线观看| 国产精品亚洲一区二区无码| 精品国产一区二区三区久| 日韩精品一区二区三区在线观看l| 亚洲熟女综合色一区二区三区| 人妖在线精品一区二区三区| 无码人妻精品一区二区三区66 | 国产精品无码不卡一区二区三区 | 国产福利电影一区二区三区久久久久成人精品综合 | 亚洲AV无码一区东京热久久| 久久国产一区二区| 日韩精品视频一区二区三区| 亚洲综合一区二区精品导航| 精品一区二区三区在线播放视频| 久久久精品人妻一区二区三区四| 亚洲国产精品综合一区在线| 亚洲熟妇AV一区二区三区宅男| 无码少妇一区二区三区芒果| 武侠古典一区二区三区中文| 手机看片一区二区| 亚洲男女一区二区三区| 亚洲日韩一区二区一无码| 国产一区二区三区在线观看影院|