Bootstrap-dropdowns

提供:Dev Guides
移動先:案内検索

ブートストラップ-ドロップダウン

この章では、Bootstrapドロップダウンメニューについて説明します。 ドロップダウンメニューは、リスト形式でリンクを表示するための切り替え可能なコンテキストメニューです。 これは、リンク:/bootstrap/bootstrap_dropdown_plugin [dropdown JavaScript plugin]を使用してインタラクティブにすることができます。

ドロップダウンを使用するには、クラス .dropdown 。内のドロップダウンメニューをラップするだけです。次の例は、基本的なドロップダウンメニューを示しています-

<div class = "dropdown">

   <button type = "button" class = "btn dropdown-toggle" id = "dropdownMenu1" data-toggle = "dropdown">
      Topics
      <span class = "caret"></span>
   </button>

   <ul class = "dropdown-menu" role = "menu" aria-labelledby = "dropdownMenu1">
      <li role = "presentation">
         <a role = "menuitem" tabindex = "-1" href = "#">Java</a>
      </li>

      <li role = "presentation">
         <a role = "menuitem" tabindex = "-1" href = "#">Data Mining</a>
      </li>

      <li role = "presentation">
         <a role = "menuitem" tabindex = "-1" href = "#">
            Data Communication/Networking
         </a>
      </li>

      <li role = "presentation" class = "divider"></li>

      <li role = "presentation">
         <a role = "menuitem" tabindex = "-1" href = "#">Separated link</a>
      </li>
   </ul>

</div>

オプション

アライメント

クラス .pull-right.dropdown-menu に追加して、ドロップダウンメニューを右に揃えます。 次の例はこれを示しています-

<div class = "dropdown">

   <button type = "button" class = "btn dropdown-toggle" id = "dropdownMenu1" data-toggle = "dropdown">
      Topics
      <span class = "caret"></span>
   </button>

   <ul class = "dropdown-menu pull-right" role = "menu" aria-labelledby = "dropdownMenu1">
      <li role = "presentation">
         <a role = "menuitem" tabindex = "-1" href = "#">Java</a>
      </li>

      <li role = "presentation">
         <a role = "menuitem" tabindex = "-1" href = "#">Data Mining</a>
      </li>

      <li role = "presentation">
         <a role = "menuitem" tabindex = "-1" href = "#">
            Data Communication/Networking
         </a>
      </li>

      <li role = "presentation" class = "divider"></li>

      <li role = "presentation">
         <a role = "menuitem" tabindex = "-1" href = "#">Separated link</a>
      </li>
   </ul>

</div>

ヘッダ

クラス dropdown-header を使用して、ドロップダウンメニューのアクションのラベルセクションにヘッダーを追加できます。 次の例はこれを示しています-

<div class = "dropdown">

   <button type = "button" class = "btn dropdown-toggle" id = "dropdownMenu1" data-toggle = "dropdown">
      Topics
      <span class = "caret"></span>
   </button>

   <ul class = "dropdown-menu" role = "menu" aria-labelledby = "dropdownMenu1">
      <li role = "presentation" class = "dropdown-header">Dropdown header</li>

      <li role = "presentation" >
         <a role = "menuitem" tabindex = "-1" href = "#">Java</a>
      </li>

      <li role = "presentation">
         <a role = "menuitem" tabindex = "-1" href = "#">Data Mining</a>
      </li>

      <li role = "presentation">
         <a role = "menuitem" tabindex = "-1" href = "#">
            Data Communication/Networking
         </a>
      </li>

      <li role = "presentation" class = "divider"></li>
      <li role = "presentation" class = "dropdown-header">Dropdown header</li>

      <li role = "presentation">
         <a role = "menuitem" tabindex = "-1" href = "#">Separated link</a>
      </li>
   </ul>

</div>