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

手風琴(Accordion)

結合我們的折疊JavaScript插件構建垂直折疊手風琴。

工作原理

手風琴使用內部折疊使其可折疊。要呈現展開的手風琴,請在.accordion上添加.open類。

此組件的動畫效果取決于“首選簡化運動媒體”查詢。請參閱我們的可訪問性文檔的簡化運動部分。

例子

單擊下面的手風琴展開/折疊手風琴內容。

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>

緊鄰

.accordion-flush刪除默認背景色、一些邊框和一些圓角,以使手風琴與其父容器緊鄰。

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>

輔助功能

有關詳細信息,請閱讀組件-折疊中關于輔助功能部分。

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

      久久不射网站| 国产精品国产三级国产aⅴ无密码| 一区二区三区在线免费播放| 久久久99免费视频| 一本久久a久久免费精品不卡| 欧美麻豆久久久久久中文| 亚洲欧美视频在线| 亚洲成人自拍视频| 国产欧美一区视频| 欧美三区在线视频| 欧美日韩麻豆| 久久国产日本精品| 欧美亚洲三级| 亚洲欧美激情视频在线观看一区二区三区 | 国产精品亚洲综合久久| 欧美精品久久久久久| 另类图片国产| 欧美一区日韩一区| 午夜精品福利一区二区三区av| 亚洲精品一区二区三区在线观看| 国产一区免费视频| 红桃视频成人| 亚洲黑丝在线| 在线精品观看| 亚洲国内欧美| 日韩亚洲国产精品| 午夜精品久久久久久久| 欧美一区二区视频在线观看| av成人国产| 欧美亚洲一区二区在线| 久久激情一区| 欧美日韩国产综合一区二区| 欧美成人精品高清在线播放| 欧美日本三区| 国产欧美日韩| 日韩亚洲欧美高清| 久久久99久久精品女同性| 久久视频精品在线| 欧美图区在线视频| 一区二区三区亚洲| 亚洲视频香蕉人妖| 久久综合九色综合欧美就去吻| 欧美精品在线视频观看| 一区二区视频在线观看| 午夜亚洲福利| 欧美日韩国产精品成人| 尹人成人综合网| 亚洲一区二区三区色| 欧美久久视频| 亚洲精品国产系列| 欧美不卡在线视频| 亚洲国产精品一区二区三区| 欧美一激情一区二区三区| 国产精品第一页第二页第三页| 精品动漫av| 久久久久久久综合| 亚洲电影在线播放| 欧美激情一区二区久久久| 亚洲国产日韩美| 欧美激情1区2区| 亚洲深夜福利视频| 国产亚洲精品激情久久| 欧美亚洲专区| 亚洲国产毛片完整版| 欧美日本簧片| 久久精品视频在线| 91久久精品国产91久久性色tv| 欧美日本精品一区二区三区| 午夜免费在线观看精品视频| 韩曰欧美视频免费观看| 欧美韩国一区| 欧美在线影院| 亚洲精品社区| 影音先锋成人资源站| 欧美男人的天堂| 亚洲专区一二三| 亚洲国产cao| 红桃av永久久久| 国产精品扒开腿做爽爽爽软件| 欧美主播一区二区三区| 亚洲美女一区| 亚洲高清av| 国产一区二区三区免费在线观看| 欧美日韩dvd在线观看| 美女啪啪无遮挡免费久久网站| 亚洲欧美日韩精品久久| 亚洲婷婷免费| 亚洲天堂av在线免费| 99热在线精品观看| 99精品视频免费| 亚洲精品国产精品乱码不99 | 国产日韩综合| 国产精品伊人日日| 国产美女精品视频| 国产午夜久久| 一区二区在线观看av| 在线免费观看欧美| av成人国产| 欧美亚洲自偷自偷| 久久综合伊人77777| 美国十次了思思久久精品导航| 免费av成人在线| 欧美系列亚洲系列| 精东粉嫩av免费一区二区三区| 亚洲国产精品传媒在线观看 | 久久美女性网| 欧美日韩亚洲一区三区| 国产视频久久久久久久| 黄色亚洲精品| 午夜欧美不卡精品aaaaa| 欧美在线视频日韩| 欧美性生交xxxxx久久久| 国产日韩欧美电影在线观看| 影音先锋中文字幕一区| 亚洲伊人观看| 欧美国产欧美亚洲国产日韩mv天天看完整 | 国产欧美日韩麻豆91| 亚洲青色在线| 久久久久久亚洲精品杨幂换脸| 欧美日韩综合不卡| 99天天综合性| 欧美精品一区视频| 亚洲国产精品久久久久婷婷老年 | 午夜在线a亚洲v天堂网2018| 国产亚洲欧洲一区高清在线观看| 亚洲欧美日韩国产精品| 欧美日韩在线免费| 国产一区二区三区在线免费观看| 欧美中文在线免费| 亚洲电影在线看| 欧美精品xxxxbbbb| 欧美一级理论性理论a| 国产亚洲欧美日韩一区二区| 久久九九免费视频| 亚洲最快最全在线视频| 国产精品欧美日韩| 欧美激情一区二区在线| 欧美亚洲一区三区| 日韩手机在线导航| 在线播放视频一区| 国产精品美女久久久免费| 美国十次成人| 欧美一区二区三区免费在线看| 伊人激情综合| 国产欧美日韩不卡免费| 欧美激情第一页xxx| 亚洲欧美日韩国产一区二区| 在线观看视频一区二区| 国产精品久久久久影院亚瑟| 免费欧美在线| 久久深夜福利| 欧美制服丝袜第一页| 亚洲欧美久久久| 一区二区三区精密机械公司 | 国产精品99免费看 | 欧美日韩第一区日日骚| 久久国产精品网站| 欧美一区二区三区免费视频| 亚洲最新在线| 一区二区免费在线视频| 亚洲美女免费视频| 亚洲精品专区| 亚洲激情黄色| 亚洲精品国精品久久99热一| 亚洲电影免费观看高清| 国产在线高清精品| 极品少妇一区二区三区| 国产伪娘ts一区| 国产一区久久| 在线观看的日韩av| 在线观看久久av| 亚洲电影免费| 亚洲人成网站在线观看播放| 最近中文字幕日韩精品 | 99在线精品视频| 亚洲人被黑人高潮完整版| 亚洲精品国产精品国自产在线| 在线免费一区三区| 亚洲人成绝费网站色www| 日韩一级黄色大片| 亚洲一区二区三区视频| 欧美一区二视频| 嫩模写真一区二区三区三州| 欧美华人在线视频| 国产精品久久久久91| 国产日韩欧美在线| 亚洲黄色天堂| 中国日韩欧美久久久久久久久| 亚洲一区一卡| 久久久久一区二区三区| 欧美精品系列| 国产视频观看一区| 亚洲国内精品| 欧美一区二区视频在线观看2020 | 亚洲激情专区| 亚洲曰本av电影| 久久九九热免费视频| 欧美日本国产一区| 国产日韩久久| 一本色道久久|