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

      欧美激情第4页| 亚洲砖区区免费| 国产精品黄色| 久久精品亚洲国产奇米99| 91久久精品国产91性色| 国产午夜精品福利| 欧美日韩人人澡狠狠躁视频| 久久久噜噜噜久久狠狠50岁| 亚洲免费在线| 亚洲永久免费av| 亚洲国产综合91精品麻豆| 国产午夜精品久久久久久免费视| 欧美国产第一页| 猫咪成人在线观看| 久久九九精品| 久久精品人人| 小嫩嫩精品导航| 亚洲桃色在线一区| 亚洲最黄网站| 制服丝袜激情欧洲亚洲| 亚洲伦理久久| 亚洲精品日韩久久| 亚洲区欧美区| 欧美视频在线观看免费网址| 欧美区日韩区| 一区二区三区av| 午夜精品久久久久久久久久久久| 欧美日韩亚洲网| 麻豆精品传媒视频| 先锋影音国产精品| 欧美精品日韩精品| 99re热这里只有精品免费视频| 欧美日韩精品二区第二页| 欧美调教视频| 宅男噜噜噜66一区二区| 欧美日本乱大交xxxxx| 国模吧视频一区| 国产一区二区三区精品欧美日韩一区二区三区 | 久久综合色婷婷| 日韩亚洲不卡在线| 最新国产精品拍自在线播放| 亚洲精品免费看| 亚洲肉体裸体xxxx137| 99国产精品久久久久久久| 亚洲一区二区三区四区在线观看| 亚洲一区二区黄色| 久久精品夜夜夜夜久久| 免费看精品久久片| 欧美亚洲第一区| 黄网动漫久久久| 日韩一级精品| 欧美一区二区三区视频在线观看| 久久先锋影音av| 欧美吻胸吃奶大尺度电影| 国产色视频一区| 日韩一区二区高清| 小黄鸭精品密入口导航| 免费日韩av| 国产精品夫妻自拍| 亚洲国产免费看| 香蕉久久一区二区不卡无毒影院 | 亚洲美女淫视频| 性做久久久久久久免费看| 欧美成人免费在线| 国产欧美婷婷中文| 一本在线高清不卡dvd| 久久久久久综合网天天| 欧美午夜大胆人体| 永久555www成人免费| 亚洲欧美一区二区三区在线| 欧美成人国产| 狠狠色狠色综合曰曰| 午夜视频在线观看一区二区| 欧美日本高清一区| 亚洲国产小视频| 久久中文字幕导航| 国产情侣一区| 亚洲一区二区三区乱码aⅴ| 欧美成人一区二区在线| 国产一级久久| 午夜精品久久久久久| 欧美日韩国产一区二区三区| 在线日韩中文| 久久综合五月| 影音先锋中文字幕一区| 久久免费高清视频| 韩国v欧美v日本v亚洲v| 欧美在线一二三四区| 国产伦精品一区二区三| 亚洲一区视频在线观看视频| 欧美午夜女人视频在线| 亚洲私人影院| 国产精品日日摸夜夜摸av| 亚洲一级黄色av| 国产精品久久久久久久久免费樱桃| 亚洲美女毛片| 国产精品国产三级国产aⅴ浪潮| 夜夜爽夜夜爽精品视频| 欧美日韩午夜视频在线观看| 一本色道久久综合亚洲精品高清 | 精品动漫3d一区二区三区免费版| 久久精品99| 黑人一区二区| 欧美aⅴ99久久黑人专区| 国产精品第13页| 午夜亚洲一区| 国模吧视频一区| 欧美成人高清| 亚洲午夜电影| 国产亚洲午夜| 欧美成人免费小视频| 99re66热这里只有精品4| 欧美日韩一区二区三区在线视频| 亚洲一区二区综合| 国产资源精品在线观看| 欧美电影在线观看完整版| 一本色道久久综合精品竹菊 | 亚洲欧美成人一区二区在线电影| 国产麻豆精品theporn| 久久久久se| 亚洲三级免费| 国产伦精品一区二区三区视频孕妇| 久久精品国产精品亚洲精品| 亚洲国内精品| 国产麻豆视频精品| 欧美69wwwcom| 欧美一区不卡| 亚洲人体偷拍| 国产欧美一区二区三区久久| 欧美a级在线| 午夜国产一区| 99综合精品| 精品不卡一区二区三区| 国产精品va| 欧美精品啪啪| 久久精品国产清高在天天线| 一区二区精品| 亚洲第一页自拍| 国产精品视频九色porn| 欧美激情一区二区三区高清视频| 亚洲欧美视频在线观看| 91久久精品国产91性色| 国产一区二区精品丝袜| 国产精品福利久久久| 另类专区欧美制服同性| 亚洲欧美精品在线观看| 亚洲久久在线| 一色屋精品视频免费看| 国产精品视频免费在线观看| 欧美人与性禽动交情品| 免费看成人av| 久久久亚洲欧洲日产国码αv| 亚洲一区二区三区精品动漫| 最新国产乱人伦偷精品免费网站| 激情成人综合| 国语自产精品视频在线看| 国产伦精品一区二区三区在线观看 | 午夜欧美电影在线观看| 一区二区三区 在线观看视频 | 欧美女同在线视频| 免费成人av在线| 久久夜色精品国产噜噜av| 欧美在线综合| 欧美中文字幕在线| 欧美一区二区三区免费在线看| 亚洲尤物在线视频观看| 亚洲视频免费观看| 亚洲一区二区三区在线看| 亚洲在线国产日韩欧美| 亚洲欧美高清| 亚洲欧美视频一区二区三区| 欧美尤物巨大精品爽| 欧美中文字幕第一页| 久久精品国产一区二区电影 | 巨乳诱惑日韩免费av| 美国十次了思思久久精品导航| 免费欧美日韩| 欧美日本中文字幕| 国产精品久久777777毛茸茸| 欧美性淫爽ww久久久久无| 国产精品成人一区二区三区吃奶 | 国产亚洲福利社区一区| 国产婷婷色一区二区三区| 国产在线精品二区| 亚洲国产欧美一区二区三区同亚洲| 91久久夜色精品国产网站| 一区二区高清在线观看| 欧美一级视频精品观看| 久久免费国产精品| 欧美日本高清视频| 国产精品一二| 在线视频国产日韩| 一卡二卡3卡四卡高清精品视频 | 欧美一区二区私人影院日本| 久久噜噜亚洲综合| 欧美日韩国产一区二区| 国产一级一区二区| 亚洲激情在线视频| 香蕉av777xxx色综合一区| 免费日韩成人|