簡體   English   中英

帶有一個標簽的手風琴總是展開。 引導程序 5

[英]Accordion with one tab always expanded. Bootstrap 5

我有一個用 bootstrap 5 制作的手風琴。我怎樣才能讓手風琴總是展開一個標簽? 換句話說,我不希望標簽一起關閉,我希望一個始終打開。 我怎么能用普通的 javascript 做到這一點?

<div class="accordion" id="accordionExample">
                <div class="accordion-item">
                  <h1 class="accordion-header" id="headingOne">
                    <button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
                      ...
                    </button>
                  </h1>
                  <div id="collapseOne" class="accordion-collapse collapse show" aria-labelledby="headingOne" data-bs-parent="#accordionExample">
                    <div class="accordion-body">
                      
...
                    </div>
                  </div>
                </div>
                <div class="accordion-item">
                  <h1 class="accordion-header" id="headingTwo">
                    <button
                      class="accordion-button collapsed"
                      type="button"
                      data-bs-toggle="collapse"
                      data-bs-target="#collapseTwo"
                      aria-expanded="false"
                      aria-controls="collapseTwo"
                    >
                      ...
                    </button>
                  </h1>
                  <div
                    id="collapseTwo"
                    class="accordion-collapse collapse"
                    aria-labelledby="headingTwo"
                    data-bs-parent="#accordionExample"
                  >
                    <div class="accordion-body">
                      ...
                    </div>
                  </div>
                </div>

我不希望這種情況發生......

在此處輸入圖像描述

似乎您想要實現引導手風琴的設計和布局風格,但不需要它的功能。 實現這一點的最佳方法是編寫 static html/css,而不是使用出於不同原因的引導組件。

根據您的問題,您正在嘗試做類似的事情:

在此處輸入圖像描述

這是使用引導程序硬編碼的,因此它將永遠打開 使用向下雪佛龍的 png 或從 fontawesome 使用 我只是鏈接到來自谷歌的外部來源的圖像,以便快速。

<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
    <title>Hello, world!</title>
  </head>
  <body>

    <div class="acordionThing" style="margin:5rem">
        <div class="col d-flex" style="background-color: rgb(185, 185, 185); ">
            <div class="col">
                <p style=" margin:1rem">
                    Somekind of a text here.
                </p>
            </div>
            <div style="width:2rem; float:right; margin-right: 2rem;">
                <img src="https://img.icons8.com/ios/452/chevron-down.png" style="width: 2rem; margin-top:0.8rem;"">
            </div>
        </div>
        <div class="col d-flex" style="background-color: rgb(218, 218, 218);">
            <div class="col">
                <p style=" margin:1rem">
                    Somekind of a text here. Somekind of a text here. Somekind of a text here. Somekind of a text here.
                    Somekind of a text here. Somekind of a text here. Somekind of a text here. Somekind of a text here.
                    
                </p>
            </div>
        
        </div>
    </div>

    <div class="acordionThing" style="margin:5rem">
        <div class="col d-flex" style="background-color: rgb(185, 185, 185); ">
            <div class="col">
                <p style=" margin:1rem">
                    Somekind of a text here.
                </p>
            </div>
            <div style="width:2rem; float:right; margin-right: 2rem;">
                <img src="https://img.icons8.com/ios/452/chevron-down.png" style="width: 2rem; margin-top:0.8rem;"">
            </div>
        </div>
        <div class="col d-flex" style="background-color: rgb(218, 218, 218);">
            <div class="col">
                <p style=" margin:1rem">
                    Somekind of a text here. Somekind of a text here. Somekind of a text here. Somekind of a text here.
                    Somekind of a text here. Somekind of a text here. Somekind of a text here. Somekind of a text here.
                    
                </p>
            </div>
        
        </div>
    </div>
    


    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4" crossorigin="anonymous"></script>
  </body>
</html>

我在同一個問題上掙扎了一段時間,終於能夠為它寫一個解決方案。 我不是 js 大師,所以它可能不是最優雅的解決方案,但它有效:

<script>
    const accordions = document.querySelectorAll(".accordion-collapse");
    let opening = false;
    accordions.forEach(function (el) {
      el.addEventListener("hide.bs.collapse", (event) => {
        if (!opening) {
          event.preventDefault();
          event.stopPropagation();
        } else {
          opening = false;
        }
      });
      el.addEventListener("show.bs.collapse", (event) => {
        opening = true;
      });
    });
</script>

有點晚了,但它也可能對其他人有用

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM