精品久久久久久亚洲精品_成人午夜网站_www日本高清_亚洲精品久久久久午夜福

Accordion

Build vertically collapsing accordions in combination with our Collapse JavaScript plugin.

How it works

The accordion uses collapse internally to make it collapsible. To render an accordion that’s expanded, add the .open class on the .accordion.

The animation effect of this component is dependent on the prefers-reduced-motion media query. See the reduced motion section of our accessibility documentation.

Example

Click the accordions below to expand/collapse the accordion content.

This is the first item's accordion body. It is hidden by default, until the collapse plugin adds the appropriate classes that we use to style each element. These classes control the overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this with custom CSS or overriding our default variables. It's also worth noting that just about any HTML can go within the .accordion-body, though the transition does limit overflow.

This is the second item's accordion body. It is hidden by default, until the collapse plugin adds the appropriate classes that we use to style each element. These classes control the overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this with custom CSS or overriding our default variables. It's also worth noting that just about any HTML can go within the .accordion-body, though the transition does limit overflow.

This is the third item's accordion body. It is hidden by default, until the collapse plugin adds the appropriate classes that we use to style each element. These classes control the overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this with custom CSS or overriding our default variables. It's also worth noting that just about any HTML can go within the .accordion-body, though the transition does limit overflow.
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h2 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">
    Accordion Item #1
  </button>
</h2>
<div id="collapseOne" class="accordion-collapse collapse show" aria-labelledby="headingOne" data-bs-parent="#accordionExample">
  <div class="accordion-body">
    <strong>This is the first item's accordion body.</strong> It is hidden by default, until the collapse plugin adds the appropriate classes that we use to style each element. These classes control the overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this with custom CSS or overriding our default variables. It's also worth noting that just about any HTML can go within the <code>.accordion-body</code>, though the transition does limit overflow.
  </div>
</div>
</div>
<div class="accordion-item">
<h2 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">
    Accordion Item #2
  </button>
</h2>
<div id="collapseTwo" class="accordion-collapse collapse" aria-labelledby="headingTwo" data-bs-parent="#accordionExample">
  <div class="accordion-body">
    <strong>This is the second item's accordion body.</strong> It is hidden by default, until the collapse plugin adds the appropriate classes that we use to style each element. These classes control the overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this with custom CSS or overriding our default variables. It's also worth noting that just about any HTML can go within the <code>.accordion-body</code>, though the transition does limit overflow.
  </div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="headingThree">
  <button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
    Accordion Item #3
  </button>
</h2>
<div id="collapseThree" class="accordion-collapse collapse" aria-labelledby="headingThree" data-bs-parent="#accordionExample">
  <div class="accordion-body">
    <strong>This is the third item's accordion body.</strong> It is hidden by default, until the collapse plugin adds the appropriate classes that we use to style each element. These classes control the overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this with custom CSS or overriding our default variables. It's also worth noting that just about any HTML can go within the <code>.accordion-body</code>, though the transition does limit overflow.
  </div>
</div>
</div>
</div>

Flush

Add .accordion-flush to remove the default background-color, some borders, and some rounded corners to render accordions edge-to-edge with their parent container.

Placeholder content for this accordion, which is intended to demonstrate the .accordion-flush class. This is the first item's accordion body.

Placeholder content for this accordion, which is intended to demonstrate the .accordion-flush class. This is the second item's accordion body. Let's imagine this being filled with some actual content.

Placeholder content for this accordion, which is intended to demonstrate the .accordion-flush class. This is the third item's accordion body. Nothing more exciting happening here in terms of content, but just filling up the space to make it look, at least at first glance, a bit more representative of how this would look in a real-world application.
<div class="accordion accordion-flush" id="accordionFlushExample">
<div class="accordion-item">
<h2 class="accordion-header" id="flush-headingOne">
  <button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#flush-collapseOne" aria-expanded="false" aria-controls="flush-collapseOne">
    Accordion Item #1
  </button>
</h2>
<div id="flush-collapseOne" class="accordion-collapse collapse" aria-labelledby="flush-headingOne" data-bs-parent="#accordionFlushExample">
  <div class="accordion-body">Placeholder content for this accordion, which is intended to demonstrate the <code>.accordion-flush</code> class. This is the first item's accordion body.</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-headingTwo">
  <button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#flush-collapseTwo" aria-expanded="false" aria-controls="flush-collapseTwo">
    Accordion Item #2
  </button>
</h2>
<div id="flush-collapseTwo" class="accordion-collapse collapse" aria-labelledby="flush-headingTwo" data-bs-parent="#accordionFlushExample">
  <div class="accordion-body">Placeholder content for this accordion, which is intended to demonstrate the <code>.accordion-flush</code> class. This is the second item's accordion body. Let's imagine this being filled with some actual content.</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-headingThree">
  <button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#flush-collapseThree" aria-expanded="false" aria-controls="flush-collapseThree">
    Accordion Item #3
  </button>
</h2>
<div id="flush-collapseThree" class="accordion-collapse collapse" aria-labelledby="flush-headingThree" data-bs-parent="#accordionFlushExample">
  <div class="accordion-body">Placeholder content for this accordion, which is intended to demonstrate the <code>.accordion-flush</code> class. This is the third item's accordion body. Nothing more exciting happening here in terms of content, but just filling up the space to make it look, at least at first glance, a bit more representative of how this would look in a real-world application.</div>
</div>
</div>
</div>

Accessibility

Please read the collapse accessibility section for more information.

Sass

Variables

$accordion-padding-y:                     1rem;
$accordion-padding-x:                     1.25rem;
$accordion-color:                         $body-color;
$accordion-bg:                            $body-bg;
$accordion-border-width:                  $border-width;
$accordion-border-color:                  rgba($black, .125);
$accordion-border-radius:                 $border-radius;
$accordion-inner-border-radius:           subtract($accordion-border-radius, $accordion-border-width);

$accordion-body-padding-y:                $accordion-padding-y;
$accordion-body-padding-x:                $accordion-padding-x;

$accordion-button-padding-y:              $accordion-padding-y;
$accordion-button-padding-x:              $accordion-padding-x;
$accordion-button-color:                  $accordion-color;
$accordion-button-bg:                     $accordion-bg;
$accordion-transition:                    $btn-transition, border-radius .15s ease;
$accordion-button-active-bg:              tint-color($component-active-bg, 90%);
$accordion-button-active-color:           shade-color($primary, 10%);

$accordion-button-focus-border-color:     $input-focus-border-color;
$accordion-button-focus-box-shadow:       $btn-focus-box-shadow;

$accordion-icon-width:                    1.25rem;
$accordion-icon-color:                    $accordion-color;
$accordion-icon-active-color:             $accordion-button-active-color;
$accordion-icon-transition:               transform .2s ease-in-out;
$accordion-icon-transform:                rotate(180deg);

$accordion-button-icon:         url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$accordion-icon-color}'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
$accordion-button-active-icon:  url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$accordion-icon-active-color}'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
返回頂部
精品久久久久久亚洲精品_成人午夜网站_www日本高清_亚洲精品久久久久午夜福

      9000px;">

          国产成人精品午夜视频免费| 国产成人免费视频一区| 成人a免费在线看| 欧美老肥妇做.爰bbww| 欧美大片一区二区三区| 不卡一区在线观看| 色久优优欧美色久优优| 懂色av噜噜一区二区三区av| 欧美福利视频一区| 日韩一区在线看| 成人一区在线看| 欧美电视剧免费观看| 免费欧美在线视频| 日本不卡视频在线观看| 久久女同性恋中文字幕| 亚洲影院免费观看| 99riav一区二区三区| 国产高清精品久久久久| 亚洲欧洲精品一区二区三区| 亚洲国产精品成人综合色在线婷婷| 欧美人狂配大交3d怪物一区| 欧美日韩精品高清| 久久男人中文字幕资源站| 日韩精品一区二区三区在线观看 | 国产精品电影一区二区| 亚洲欧洲成人精品av97| 一区二区不卡在线播放| 日韩一区二区三区四区五区六区| 久久久久青草大香线综合精品| 日韩欧美你懂的| 色一区在线观看| 成人深夜视频在线观看| 亚洲国产精品久久人人爱| 亚洲一区免费视频| 日本不卡视频在线| 色综合一个色综合| 精品一区二区三区蜜桃| 性做久久久久久久久| 亚洲国产毛片aaaaa无费看| 亚洲精品视频免费观看| 一区二区三区四区亚洲| 五月婷婷综合在线| 成人激情综合网站| 日韩欧美一级精品久久| 成人欧美一区二区三区白人| 青青草国产精品亚洲专区无| 成人自拍视频在线观看| 欧美日韩精品三区| 国产精品天美传媒沈樵| 看电视剧不卡顿的网站| 26uuu精品一区二区| 国产精品卡一卡二| 国产a区久久久| 国产亚洲一二三区| 制服丝袜亚洲精品中文字幕| 亚洲男人的天堂av| 91视频观看视频| 一区二区三区波多野结衣在线观看| 国产成人精品三级| 中文子幕无线码一区tr| 激情图片小说一区| 欧美精品一区二区久久久| 久草在线在线精品观看| 欧美成人精品3d动漫h| 69久久夜色精品国产69蝌蚪网| 色欧美片视频在线观看 | 丝袜诱惑亚洲看片| 精品免费日韩av| 久久久精品一品道一区| 欧美一区日本一区韩国一区| 一本一道久久a久久精品| 99久久综合99久久综合网站| 91在线视频播放| 一本一本大道香蕉久在线精品| 色婷婷久久久亚洲一区二区三区| 欧美艳星brazzers| 欧美男人的天堂一二区| 精品理论电影在线观看| 国产亚洲一区字幕| 亚洲欧美一区二区三区孕妇| 亚洲自拍欧美精品| 蜜乳av一区二区三区| 国产精品伊人色| av在线免费不卡| 欧美视频一区二区在线观看| 日韩欧美自拍偷拍| 亚洲日本在线a| 热久久久久久久| 99久久久久免费精品国产| 9191国产精品| 日韩美女精品在线| 久久99精品久久久久久久久久久久| 成人伦理片在线| 欧美精品一级二级| 国产天堂亚洲国产碰碰| 欧美日韩成人综合天天影院| 国产原创一区二区| 中文字幕精品一区二区精品绿巨人 | 日本电影亚洲天堂一区| 99久久99久久精品国产片果冻| 欧美自拍偷拍午夜视频| 337p日本欧洲亚洲大胆精品| 亚洲午夜久久久久久久久久久| 极品少妇xxxx精品少妇| 亚洲一区视频在线观看视频| 成人av电影免费在线播放| 精品一区二区三区在线观看| 91在线免费视频观看| 欧美成人乱码一区二区三区| 亚洲伊人伊色伊影伊综合网| 国产a级毛片一区| 4hu四虎永久在线影院成人| 亚洲另类中文字| 国产成人精品1024| 精品乱人伦一区二区三区| 日韩电影免费在线观看网站| 色综合天天综合网天天狠天天| 国产区在线观看成人精品| 久久精品国产亚洲一区二区三区| 欧美日韩大陆一区二区| 亚洲一区二区视频在线| 色婷婷精品大在线视频 | 国产亚洲成aⅴ人片在线观看| 亚洲风情在线资源站| 在线免费观看日本欧美| 亚洲免费色视频| 成人高清免费在线播放| 欧美国产乱子伦 | 国产91丝袜在线播放| 精品国产一区二区亚洲人成毛片| 亚洲高清久久久| 欧美亚洲动漫制服丝袜| 一区二区三区精密机械公司| 成人av电影在线| 亚洲欧洲精品一区二区三区 | 91在线视频免费91| 狠狠色综合色综合网络| 欧美日韩一区精品| 粉嫩aⅴ一区二区三区四区| 91首页免费视频| 精品噜噜噜噜久久久久久久久试看 | 国产视频一区二区三区在线观看| 麻豆精品新av中文字幕| 欧美不卡一区二区三区四区| 久久99精品久久久| 久久婷婷成人综合色| 国产成人av资源| 国产精品五月天| 91精品国产aⅴ一区二区| 国产一区欧美日韩| 丝袜美腿亚洲综合| 日本精品一级二级| 综合激情成人伊人| 欧美剧在线免费观看网站| 首页亚洲欧美制服丝腿| 久久综合网色—综合色88| 青青青伊人色综合久久| 26uuu成人网一区二区三区| av一本久道久久综合久久鬼色| 国产欧美精品一区二区色综合 | 欧美在线小视频| 午夜激情一区二区三区| 久久国产人妖系列| 国产免费成人在线视频| 91视频在线看| 日韩黄色片在线观看| 久久天堂av综合合色蜜桃网| 日韩欧美国产一二三区| 99r国产精品| 麻豆专区一区二区三区四区五区| 国产精品女人毛片| 欧美日韩国产首页| 国产美女精品人人做人人爽 | 国产目拍亚洲精品99久久精品 | 欧美www视频| 99国产精品国产精品毛片| 亚洲午夜久久久久久久久电影网 | 色先锋aa成人| 日本不卡视频在线| 一级做a爱片久久| 精品盗摄一区二区三区| 在线日韩一区二区| 国产主播一区二区三区| 免费在线观看精品| 一区二区三区中文字幕| 久久久美女毛片| 91福利国产精品| eeuss鲁片一区二区三区在线观看| 久久精品国产一区二区三 | 欧美精品乱码久久久久久| 国产成人自拍网| 国产精品一区一区三区| 欧美成人欧美edvon| 在线观看亚洲成人| 国产成人夜色高潮福利影视| 麻豆精品一区二区三区| 91精品国产入口| 洋洋av久久久久久久一区| 一本色道久久综合狠狠躁的推荐| 国产成人综合亚洲网站|