110

关于该主题的引导文档让我有点困惑。我想在带有词缀导航栏的文档中实现类似的行为:导航栏位于段落/页面标题下方,向下滚动时,它应该首先滚动直到到达页面顶部,然后固定在那里以进一步向下滚动.

由于 jsFiddle 不适用于导航栏概念,因此我设置了一个单独的页面作为最小示例:http: //i08fs1.ira.uka.de/~s_drr/navbar.html

我用它作为我的导航栏:

<div class="navbar affix-top" data-spy="affix" data-offset-top="50">
    <div class="navbar-inner">
        <div class="container">
            <div class="span12">
                <a class="brand" href="#">My Brand</a> 
                This is my navbar.
             </div>
        </div> <!-- container -->
    </div> <!-- navbar-inner -->
</div> <!-- navbar -->

我想我希望data-offset-top值为 0(因为条形图应该“粘”到最顶部”,但 50 至少有一些效果可看。

如果也将javascript代码放在适当的位置:

     <script>
        $(document).ready (function (){
            $(".navbar").affix ();
        });
     </script>

任何帮助表示赞赏。

4

9 回答 9

160

我遇到了类似的问题,我相信我找到了改进的解决方案。

不要费心data-offset-top在您的 HTML 中指定。相反,请在调用时指定它.affix()

$('#nav').affix({
    offset: { top: $('#nav').offset().top }
});​

这里的优点是您可以更改站点的布局而无需更新data-offset-top属性。由于这使用了元素的实际计算位置,因此它还可以防止与将元素呈现在稍微不同的位置的浏览器不一致。


您仍然需要使用 CSS 将元素固定在顶部。此外,我不得不设置width: 100%nav 元素,因为由于某种原因行为不端的.nav元素:position: fixed

#nav.affix {
    position: fixed;
    top: 0px;
    width: 100%;
}

最后一件事:当一个附加元素变得固定时,它的元素不再占用页面空间,导致它下面的元素“跳跃”。为了防止这种丑陋,我将导航栏包装在div我设置为等于运行时导航栏的高度中:

<div id="nav-wrapper">
    <div id="nav" class="navbar">
        <!-- ... -->
    </div>
</div>

.

$('#nav-wrapper').height($("#nav").height());

这是必须的 jsFiddle 才能看到它的实际效果

于 2012-10-31T03:50:32.707 回答
76

刚刚第一次实现了这个,这就是我发现的。

data-offset-top值是为使附加效果发生而必须滚动的像素数量。在您的情况下,一旦50px滚动,您的项目上的类将从更改.affix-top.affix。您可能希望在您的用例中设置data-offset-top为 about 。130px

一旦发生此类更改,您必须通过设置 class 的定位样式将元素定位在 css 中.affix。Bootstrap 2.1 已经定义了.affixposition: fixed;所以你需要做的就是添加你自己的位置值。

例子:

.affix {
    position: fixed; 
    top: 20px; 
    left: 0px;
}
于 2012-08-22T23:09:09.770 回答
5

为了解决这个问题,我修改了 affix 插件以在对象被附加或未附加时发出 jQuery 事件。

这是拉取请求:https ://github.com/twitter/bootstrap/pull/4712

和代码:https ://github.com/corbinu/bootstrap/blob/master/js/bootstrap-affix.js

然后执行此操作以附加导航栏:

<script type="text/javascript">
$(function(){
    $('#navbar').on('affixed', function () {
        $('#navbar').addClass('navbar-fixed-top')
    });

    $('#navbar').on('unaffixed', function () {
        $('#navbar').removeClass('navbar-fixed-top')
    });
});
</script>
于 2012-08-25T22:52:01.743 回答
3

您需要.affix()从脚本中删除。

Bootstrap 在大多数情况下提供了通过data-attributesJavaScript 或直接 JavaScript 完成任务的选项。

于 2012-09-25T17:45:45.630 回答
2

我从 twitterbootstrap 的源代码中得到了这个,它运行得很好:

HTML:

<div class="row">
    <div class="span3 bs-docs-sidebar">
        <ul id="navbar" class="nav nav-list bs-docs-sidenav">
            ...
        </ul>
    </div>
</div>

CSS:

.bs-docs-sidenav {
    max-height: 340px;
    overflow-y: scroll;
}

.affix {
    position: fixed;
    top: 50px;
    width: 240px;
}

JS:

$(document).ready(function(){
    var $window = $(window);
    setTimeout(function () {
        $('.bs-docs-sidenav').affix({
            offset: {
                top: function (){
                    return $window.width() <= 980 ? 290 : 210
                }
            }
        })
    }, 100);
});
于 2013-02-17T08:31:39.210 回答
1

您只需要删除脚本。这是我的例子:

<!DOCTYPE html>
<html>

<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.0.min.js"></script>
<script type="text/javascript" src="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.1.0/js/bootstrap.min.js"></script>

  <style>
  #content {
    width: 800px;
    height: 2000px;
    background: #f5f5f5;
    margin: 0 auto;
  }
  .menu {
    background: #ccc;
    width: 200px;
    height: 400px;
    float: left;
  }
  .affix {
    position: fixed;
    top: 20px;
    left: auto;
    right: auto;
  }
  </style>

</head>
<body>
    <div id="content">
        <div style="height: 200px"></div>

        <div class="affix-top" data-spy="affix" data-offset-top="180">
            <div class="menu">AFFIX BAR</div>
        </div>
    </div>
</body>
</html>
于 2012-10-01T12:53:33.420 回答
1

感谢 namuol 和 Dave Kiss 的解决方案。在我的情况下,当我一起使用 afflix 和折叠插件时,导航栏的高度和宽度有一个小问题。宽度问题可以很容易地从父元素(在我的例子中是容器)继承它来解决。我也可以设法用一点javascript(实际上是coffeescript)让它顺利折叠。auto诀窍是在折叠切换发生之前将包装器高度设置为并在之后将其修复。

标记(haml):

#wrapper
  #navbar.navbar
    .navbar-inner
      %a.btn.btn-navbar.btn-collapse
        %span.icon-bar
        %span.icon-bar
        %span.icon-bar

      #menu.nav-collapse
        -# Menu goes here

CSS:

#wrapper {
  width: inherit;
}

#navbar {
  &.affix {
    top: 0;
    width: inherit;
  }
}

咖啡脚本:

class Navigation
  @initialize: ->
    @navbar = $('#navbar')
    @menu = $('#menu')
    @wrapper = $('#wrapper')

    @navbar.affix({offset: @navbar.position()})
    @adjustWrapperHeight(@navbar.height())

    @navbar.find('a.btn-collapse').on 'click', () => @collapse()

    @menu.on 'shown', () => @adjustWrapperHeight(@navbar.height())
    @menu.on 'hidden', () => @adjustWrapperHeight(@navbar.height())

  @collapse: ->
    @adjustWrapperHeight("auto")
    @menu.collapse('toggle')

  @adjustWrapperHeight: (height) ->
    @wrapper.css("height", height)

$ ->
  Navigation.initialize()
于 2013-02-20T21:19:38.343 回答
0

我附加导航栏的解决方案:

function affixnolag(){

    $navbar = $('#navbar');
    if($navbar.length < 1)
        return false;

    h_obj = $navbar.height();

    $navbar
        .on('affixed', function(){      
            $navbar.after('<div id="nvfix_tmp" style="height:'+h_obj+'px">');
        })
        .on('unaffixed', function(){
            if($('#nvfix_tmp').length > 0)
                $('#nvfix_tmp').remove();
        });
 }
于 2012-08-27T23:38:16.643 回答
0

与接受的答案类似,您还可以执行以下操作来一次性完成所有操作:

$('#nav').affix({
  offset: { top: $('#nav').offset().top }
}).wrap(function() {
  return $('<div></div>', {
    height: $(this).outerHeight()
  });
});​

这不仅会调用affix插件,还会将附加元素包装在一个 div 中,这将保持导航栏的原始高度。

于 2015-09-02T17:27:36.673 回答