Bskin Bootstrap 5 skin ui kit

Collapse

Toggle the visibility of content across your project with a few classes and our JavaScript plugins.

Basic Collapse

Some placeholder content for the collapse component. This panel is hidden by default but revealed when the user activates the relevant trigger.
     <a class="btn btn-primary me-5 mb-4" data-bs-toggle="collapse" href="#collapseExample" role="button" aria-expanded="false" aria-controls="collapseExample">
     Link with href
     </a>
     <button class="btn btn-primary me-5 mb-4" type="button" data-bs-toggle="collapse" data-bs-target="#collapseExample" aria-expanded="false" aria-controls="collapseExample">
     Button with data-target
     </button>
     <div class="collapse mt-2" id="collapseExample">
     <div class="card card-body shadow rounded-0 border-top-3">
     Some placeholder content for the collapse component. This panel is hidden by default but revealed when the user activates the relevant trigger.
     </div>
     </div>
        

Multiple Targets

Some placeholder content for the first collapse component of this multi-collapse example. This panel is hidden by default but revealed when the user activates the relevant trigger.
Some placeholder content for the second collapse component of this multi-collapse example. This panel is hidden by default but revealed when the user activates the relevant trigger.
       <a class="btn btn-primary me-5 mb-4" data-bs-toggle="collapse" href="#multiCollapseExample1" role="button" aria-expanded="false" aria-controls="multiCollapseExample1">Toggle first element</a>
       <button class="btn btn-primary me-5 mb-4" type="button" data-bs-toggle="collapse" data-bs-target="#multiCollapseExample2" aria-expanded="false" aria-controls="multiCollapseExample2">Toggle second element</button>
       <button class="btn btn-primary me-5 mb-4" type="button" data-bs-toggle="collapse" data-bs-target=".multi-collapse" aria-expanded="false" aria-controls="multiCollapseExample1 multiCollapseExample2">Toggle both elements</button>
       <div class="row">
       <div class="col">
       <div class="collapse multi-collapse mt-2" id="multiCollapseExample1">
       <div class="card card-body shadow rounded-0 border-top-3">
       Some placeholder content for the first collapse component of this multi-collapse example. This panel is hidden by default but revealed when the user activates the relevant trigger.
       </div>
       </div>
       </div>
       <div class="col">
       <div class="collapse multi-collapse mt-2" id="multiCollapseExample2">
       <div class="card card-body shadow rounded-0 border-top-3">
       Some placeholder content for the second collapse component of this multi-collapse example. This panel is hidden by default but revealed when the user activates the relevant trigger.
       </div>
       </div>
       </div>
       </div>
        

© Copyright-2022 DesignCollection.in. All rights reserved.