Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to quickly knock up the functionality of the twitter bootstraps main navigation and sub navigation e.g. http://twitter.github.com/bootstrap/scaffolding.html (when you scroll the subnav becomes fixed to that main navigation)

Has anyone implemented this or are there any tutorials?

share|improve this question
3  
The functionality you see there is not included in the Bootstrap framework. They're using jQuery to determine the position and then to add or remove the "subnav-fixed" class. You can get a feel of how they're doing it by checking out twitter.github.com/bootstrap/assets/js/application.js and searching for "subnav" – Jamie Taniguchi Feb 7 '12 at 22:49
FYI, this feature should be implemented in v2.1.0 – yvoyer Jun 21 '12 at 15:11

4 Answers

up vote 68 down vote accepted

Here is my code to implement this feature:

$(document).scroll(function(){
    // If has not activated (has no attribute "data-top"
    if (!$('.subnav').attr('data-top')) {
        // If already fixed, then do nothing
        if ($('.subnav').hasClass('subnav-fixed')) return;
        // Remember top position
        var offset = $('.subnav').offset()
        $('.subnav').attr('data-top', offset.top);
    }

    if ($('.subnav').attr('data-top') - $('.subnav').outerHeight() <= $(this).scrollTop())
        $('.subnav').addClass('subnav-fixed');
    else
        $('.subnav').removeClass('subnav-fixed');
});
share|improve this answer
2  
Works great - thanks! – Cory W. Feb 23 '12 at 4:24
This has a side effect of affecting all absolutely positioned items on the page. Is there an easy way around it? – Egor Pavlikhin Jul 3 '12 at 13:56
Can you please show an example of your problem? – Oleg Jul 4 '12 at 19:29
Is there a way to integrate scrollspy with this as seen on the Twitter Bootstrap component page? – Cyle Jul 30 '12 at 18:40
I see no problems with this. – Oleg Jul 31 '12 at 10:50
show 3 more comments

As of 2012-12-04 the accepted answer is no longer the best choise, since the desired functionality has been included into Bootstrap. Please see Affix JavaScript component which is part of Bootstrap JS

share|improve this answer
1  
Just searching it :) Dear stackoverflow freands it's really most correct and easy way for today don't try previous tricks. – woto Dec 4 '12 at 18:53

Great Answer from @Oleg,

For people like me who want to reproduce the responsive behaviour of the .subnav

Here is the css code (without colors, borders and effects)

body {  padding-top: 90px; }
@media (max-width: 980px) {
    body {
        padding-top: 0;
    }
}
.subnav {
    width: 100%;
}
@media (max-width: 768px) {
    .subnav {
        position: static;
        top: auto;
        z-index: auto;
        width: auto;
        height: auto;
    }
    .subnav .nav > li {
        float: none;
    }
}
@media (min-width: 980px) {
  .subnav-fixed {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1020;
  }
 .subnav-fixed .nav {
    width: 938px;
    margin: 0 auto;
  }
}
@media (min-width: 1210px) {
  .subnav-fixed .nav {
    width: 1168px;
  }
}

If you want to clone the style of the menu (including colors, borders and effects)

http://jsfiddle.net/baptme/ydY6W/

share|improve this answer

The two answers above work great, but I just thought I'd let people know that I've made this into a module (without the jQuery dependency) available at ForbesLindesay/booting-sub-nav. It can be used standalone with a script tag or via https://github.com/component/component/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.