精品久久久久久亚洲精品_成人午夜网站_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日本高清_亚洲精品久久久久午夜福

      国产精品久久久久一区| 美女精品国产| 在线成人国产| 欧美午夜在线一二页| 久久久精品性| 夜久久久久久| 一区二区视频免费完整版观看| 欧美日韩黄色一区二区| 美玉足脚交一区二区三区图片| 性娇小13――14欧美| 亚洲精品资源| 亚洲成人在线视频网站| 国产丝袜一区二区| 欧美婷婷久久| 欧美日韩高清在线观看| 久久最新视频| 久久精品国产清高在天天线| 香港成人在线视频| 亚洲免费一区二区| 亚洲视频精品在线| 一本色道久久综合精品竹菊| 亚洲人永久免费| 亚洲国产精品一区二区www在线| 国产午夜精品视频| 国产亚洲欧美日韩精品| 国产精品一区二区在线观看| 国产精品久久久久久久久免费桃花| 欧美韩日精品| 欧美日韩在线精品| 欧美三级视频| 国产精品色婷婷| 国产精品入口麻豆原神| 国产精品入口麻豆原神| 国产精品一区2区| 国产亚洲欧美aaaa| 有码中文亚洲精品| 亚洲国产精品一区制服丝袜 | 国产精品福利影院| 国产精品亚洲综合色区韩国| 国产欧美在线视频| 一区二区亚洲精品国产| 91久久精品国产| 亚洲精品久久久蜜桃| 亚洲另类黄色| 亚洲免费伊人电影在线观看av| 亚洲综合精品| 久久狠狠亚洲综合| 猛干欧美女孩| 国产精品成人免费精品自在线观看| 欧美午夜片在线免费观看| 国产日韩精品综合网站| 在线 亚洲欧美在线综合一区| 亚洲国产精品成人久久综合一区| 日韩手机在线导航| 久久成人免费视频| 欧美日韩午夜视频在线观看| 国产女优一区| 亚洲精品视频在线观看免费| 午夜免费在线观看精品视频| 久久综合999| 国产精品www.| 亚洲高清不卡一区| 亚洲欧美日本国产有色| 嫩草影视亚洲| 国产欧美一区二区精品婷婷 | 一本色道久久综合亚洲精品小说| 午夜在线a亚洲v天堂网2018| 欧美国产日韩一区二区| 国产一区二区三区网站 | 欧美精品入口| 国内成人精品2018免费看| 99精品国产在热久久婷婷| 欧美一区影院| 欧美亚洲成人网| 亚洲精品国精品久久99热| 久久国产福利国产秒拍| 国产精品久久亚洲7777| 亚洲人成啪啪网站| 久久影院亚洲| 国产主播一区二区三区四区| 亚洲一区久久久| 欧美激情按摩在线| 亚洲第一免费播放区| 欧美在线免费播放| 国产女人精品视频| 亚洲影院色无极综合| 欧美日产一区二区三区在线观看 | 农村妇女精品| 伊人久久亚洲美女图片| 久久久国产精品亚洲一区| 国产精品乱码一区二区三区| 99这里有精品| 欧美凹凸一区二区三区视频| 在线观看av一区| 久久久久国产免费免费| 国产小视频国产精品| 亚洲影音一区| 国产精品久久久一区二区| 亚洲性线免费观看视频成熟| 欧美日韩国产成人高清视频| 亚洲人成网在线播放| 欧美xart系列高清| 99热这里只有成人精品国产| 欧美日韩精品系列| 亚洲制服av| 国产日韩综合一区二区性色av| 午夜精品999| 黑丝一区二区三区| 女仆av观看一区| 99精品视频网| 国产欧美日韩综合一区在线观看| 亚洲欧美在线免费| 国产亚洲成av人在线观看导航| 久久久久国产精品一区三寸| 亚洲日本成人女熟在线观看| 欧美日韩日本视频| 亚洲欧美日韩人成在线播放| 国产女主播一区二区| 老牛嫩草一区二区三区日本| 99国产精品99久久久久久| 欧美日韩999| 欧美一区二区视频免费观看| 国产精品日本| 欧美成人黑人xx视频免费观看| 一区二区三区免费观看| 欧美日韩一级片在线观看| 亚洲在线1234| 91久久精品日日躁夜夜躁欧美| 欧美精品电影在线| 午夜欧美大片免费观看| 伊人久久亚洲美女图片| 欧美三级网址| 免费不卡中文字幕视频| 在线视频欧美精品| 在线观看亚洲一区| 国产精品日韩欧美一区| 欧美成人中文| 欧美在线观看一区| 日韩视频国产视频| 娇妻被交换粗又大又硬视频欧美| 欧美日韩国产大片| 欧美主播一区二区三区美女 久久精品人| 亚洲国产一区视频| 国产日本亚洲高清| 欧美激情在线狂野欧美精品| 欧美一区二区三区视频免费播放| 最新高清无码专区| 尤物网精品视频| 国产精品国码视频| 欧美精品久久一区二区| 久久国产欧美精品| 亚洲一区二区视频在线| 亚洲精品综合久久中文字幕| 伊人久久大香线| 国产一区白浆| 国产午夜亚洲精品羞羞网站| 国产精品地址| 国产精品久久久久影院色老大| 欧美刺激性大交免费视频 | 狠狠色丁香久久婷婷综合丁香| 欧美日韩国内自拍| 久久狠狠久久综合桃花| 欧美一区影院| 久久精品观看| 久久久久久久久久久久久久一区| 欧美一级视频精品观看| 亚洲新中文字幕| 亚洲男同1069视频| 亚洲欧美日韩在线不卡| 亚洲欧美怡红院| 欧美一区二区三区免费观看视频| 午夜精彩视频在线观看不卡| 亚洲一区中文| 亚欧成人精品| 久久久久国内| 欧美高清一区二区| 久久久综合网站| 免费在线亚洲欧美| 欧美日韩精品综合在线| 国产精品成人午夜| 国产日韩精品在线| 在线精品国产成人综合| 亚洲欧洲精品一区二区三区不卡| 亚洲精品综合精品自拍| 亚洲天堂网在线观看| 亚洲欧美日韩成人| 久久久久久久波多野高潮日日| 米奇777在线欧美播放| 欧美日本不卡| 国产精品一卡二| 在线观看视频一区| 一区二区三区成人精品| 午夜亚洲福利在线老司机| 久久一区国产| 欧美日韩国产一级| 国产一区二区三区视频在线观看 | 欧美日韩在线免费| 国产综合视频| 亚洲国产欧美另类丝袜| 亚洲女人天堂av|