Upon clicking the 'Gmail' (with arrow next to it), menu options such as 'Contacts', 'Tasks' show up.

Is there a similar component in bootstrap? or any other plugin to achieve the same?

有帮助吗?

解决方案

Are you thinking of something like this? http://cdpn.io/BqHfm

It's based on the Bootstrap Dropdown

<div class="dropdown">

 <a id="dLabel" role="button" data-toggle="dropdown" data-target="#" href="/page.html">
    Mail <span class="caret"></span></a>

   <ul class="dropdown-menu" role="menu" aria-labelledby="dLabel">
      <li><a href="#">Mail</a></li> 
      <li><a href="#">Contacts</a></li>
      <li><a href="#">Tasks</a></li>
  </ul>

</div>  

Good luck!

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top