Bootstrap Affix与Bootstrap col-xx-yy类

时间:2017-10-25 13:54:40

标签: twitter-bootstrap affix

我正在尝试使用Bootstrap附加功能在向下滚动时将导航器(水平)固定到顶部。导航器在向下滚动时粘贴到顶部,但可滚动内容在其上滚动而不是在其下方。

更多背景...主体,即可滚动内容是一个具有引导面板和输入字段的表单,这些字段使用col-md- *类来格式化布局。使用这个类似乎是添加“position:relative”属性,这似乎导致了重叠。

我的问题....我是CSS新手所以

  • 我不明白为什么位置:相对内容重叠位置:固定(导航器)。
  • 我不明白为什么bootstrap添加位置:相对于这些组件而没有额外的top,left,bottom或right属性。没有这些属性之一与“position:static”不一样,这是默认的吗?
  • 最后,我该如何解决这个问题。我正在寻找一个优选的标准非黑客解决方案,它不会在引导程序升级时中断。

编辑:在撰写这篇文章的过程中,我得到了一个想法并在导航器中添加了一个正面的z-index,现在可滚动内容滚动到导航器后面。这是正确的解决方案吗?我仍然在寻找其他问题的答案。谢谢。

*编辑2:在这里找到我所有词缀问题的答案。 https://www.jero.co.nz/blog/bootstrap-affix-plugin/ 另外一个问题我没有在这里解决...如果偏移是零,则在点击和滚动时粘贴并且不固定。将偏移量设置为1。

现在我需要弄清楚如何将其标记为已解决。*

这是我使用W3Schools词缀示例创建的小提琴。 https://jsfiddle.net/fLx60zvh/2/

感谢您的帮助。

<!DOCTYPE html>
<html>
<head>
  <title>Bootstrap Example</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
  <style>
  /* Note: Try to remove the following lines to see the effect of CSS positioning */
  .affix {
      top: 0;
      width: 100%;
  }

  .affix + .container-fluid {
      padding-top: 70px;
  }
  </style>
</head>
<body>

<div class="container-fluid" style="background-color:#F44336;color:#fff;height:200px;">
  <h1>Bootstrap Affix Example</h1>
  <h3>Fixed (sticky) navbar on scroll</h3>
  <p>Scroll this page to see how the navbar behaves with data-spy="affix".</p>
  <p>The navbar is attached to the top of the page after you have scrolled a specified amount of pixels.</p>
</div>

<nav class="navbar navbar-inverse" data-spy="affix" data-offset-top="197">
  <ul class="nav navbar-nav">
    <li class="active"><a href="#">Basic Topnav</a></li>
    <li><a href="#">Page 1</a></li>
    <li><a href="#">Page 2</a></li>
    <li><a href="#">Page 3</a></li>
  </ul>
</nav>

<div class="container-fluid" style="height:1000px">
  <div class="col-md-6">
    <h1>Some text to enable scrolling</h1>
    <h1>Some text to enable scrolling</h1>
    <h1>Some text to enable scrolling</h1>
    <h1>Some text to enable scrolling</h1>
    <h1>Some text to enable scrolling</h1>
    <h1>Some text to enable scrolling</h1>
    <h1>Some text to enable scrolling</h1>
    <h1>Some text to enable scrolling</h1>
    <h1>Some text to enable scrolling</h1>
    <h1>Some text to enable scrolling</h1>
    <h1>Some text to enable scrolling</h1>
  </div>
  <div class="col-md-6">
    <h1>Some text to enable scrolling</h1>
    <h1>Some text to enable scrolling</h1>
    <h1>Some text to enable scrolling</h1>
    <h1>Some text to enable scrolling</h1>
    <h1>Some text to enable scrolling</h1>
    <h1>Some text to enable scrolling</h1>
    <h1>Some text to enable scrolling</h1>
    <h1>Some text to enable scrolling</h1>
    <h1>Some text to enable scrolling</h1>
    <h1>Some text to enable scrolling</h1>
    <h1>Some text to enable scrolling</h1>
  </div>
</div>
</body>
</html>

1 个答案:

答案 0 :(得分:1)

了解如何解决问题。

在这里找到我所有词缀问题的答案。好博客! https://www.jero.co.nz/blog/bootstrap-affix-plugin/ 另外一个问题我没有在这里解决...如果偏移是零,则在点击和滚动时粘贴并且不固定。将偏移量设置为1。