当bootstrap崩溃时,它意味着什么?

时间:2023-01-25 11:01:51

I am learning bootstrap on Bootstrap's site It say's about navbars:

我在Bootstrap的网站上学习bootstrap它说的是关于navbars:

Navbars are responsive meta components that serve as navigation headers for your application or site. They begin collapsed (and are toggleable) in mobile views and become horizontal as the available viewport width increases.

Navbars是响应式元组件,用作应用程序或站点的导航标题。它们在移动视图中开始折叠(并且可以切换),并随着可用视口宽度的增加而变为水平。

Here is the

这里是

<nav class="navbar navbar-default" role="navigation">
  <div class="container-fluid">
    <!-- Brand and toggle get grouped for better mobile display -->
    <div class="navbar-header">
      <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
        <span class="sr-only">Toggle navigation</span>
        <span class="icon-bar"></span>
        <span class="icon-bar"></span>
        <span class="icon-bar"></span>
      </button>
      <a class="navbar-brand" href="#">Brand</a>
    </div>

    <!-- Collect the nav links, forms, and other content for toggling -->
    <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      <ul class="nav navbar-nav">
        <li class="active"><a href="#">Link</a></li>
        <li><a href="#">Link</a></li>
        <li class="dropdown">
          <a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <b class="caret"></b></a>
          <ul class="dropdown-menu">
            <li><a href="#">Action</a></li>
            <li><a href="#">Another action</a></li>
            <li><a href="#">Something else here</a></li>
            <li class="divider"></li>
            <li><a href="#">Separated link</a></li>
            <li class="divider"></li>
            <li><a href="#">One more separated link</a></li>
          </ul>
        </li>
      </ul>
      <form class="navbar-form navbar-left" role="search">
        <div class="form-group">
          <input type="text" class="form-control" placeholder="Search">
        </div>
        <button type="submit" class="btn btn-default">Submit</button>
      </form>
      <ul class="nav navbar-nav navbar-right">
        <li><a href="#">Link</a></li>
        <li class="dropdown">
          <a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <b class="caret"></b></a>
          <ul class="dropdown-menu">
            <li><a href="#">Action</a></li>
            <li><a href="#">Another action</a></li>
            <li><a href="#">Something else here</a></li>
            <li class="divider"></li>
            <li><a href="#">Separated link</a></li>
          </ul>
        </li>
      </ul>
    </div><!-- /.navbar-collapse -->
  </div><!-- /.container-fluid -->
</nav>

The problem is i can't understand what is collapse and why should one use them?

问题是我无法理解什么是崩溃,为什么要使用它们?

1 个解决方案

#1


8  

It means that the inline menu will become a drop down menu when the viewport size is not wide enough to display all the items.

这意味着当视口大小不足以显示所有项目时,内联菜单将成为下拉菜单。

Inline menu:

当bootstrap崩溃时,它意味着什么?

Collapsed menu:

当bootstrap崩溃时,它意味着什么?

Bootstrap shows that drop down menu with a button in the right-top corner. You'll have to click on it to see the available menu items.

Bootstrap通过右上角的按钮显示下拉菜单。您必须单击它才能看到可用的菜单项。

#1


8  

It means that the inline menu will become a drop down menu when the viewport size is not wide enough to display all the items.

这意味着当视口大小不足以显示所有项目时,内联菜单将成为下拉菜单。

Inline menu:

当bootstrap崩溃时,它意味着什么?

Collapsed menu:

当bootstrap崩溃时,它意味着什么?

Bootstrap shows that drop down menu with a button in the right-top corner. You'll have to click on it to see the available menu items.

Bootstrap通过右上角的按钮显示下拉菜单。您必须单击它才能看到可用的菜单项。