Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you use headroom.js with Bootstrap 3 navbar?

I found this JavaScript widget http://wicky.nillia.ms/headroom.js/ and I want to use it in a web application using Bootstrap 3. It doesn't seem to be working. Any suggestion or example what I should do?

I'm currently using navbar-fixed-top on the navbar. I tried with and without it and it is still not working. I can see the headroom.js classes applied to the header but there is no effect in the UI elements.


Resolved

You need to add this style.

<style type="text/css">
.headroom {position: fixed;top: 0;left: 0;right: 0;transition: all .2s ease-in-out;}
.headroom--unpinned {top: -100px;}
.headroom--pinned {top: 0;}
</style>

Source: http://codeasp.net/blogs/raghav_khunger/microsoft-net/2314/how-to-use-headroom-js

like image 754
James Avatar asked Dec 18 '13 02:12

James


3 Answers

I found the solution to the problem. You need to add this style.

<style type="text/css">
.headroom {position: fixed;top: 0;left: 0;right: 0;transition: all .2s ease-in-out;}
.headroom--unpinned {top: -100px;}
.headroom--pinned {top: 0;}
</style>

Source: http://codeasp.net/blogs/raghav_khunger/microsoft-net/2314/how-to-use-headroom-js

Thanks Fox Genki for the source link.

like image 133
James Avatar answered Nov 11 '22 05:11

James


Try this :

<script type="text/javascript">
        $(".navbar-fixed-top").headroom();
</script>

Source : http://codeasp.net/blogs/raghav_khunger/microsoft-net/2314/how-to-use-headroom-js

Demo : http://fiddle.jshell.net/raghav_khunger/d7QQ8/2/show/light/

like image 32
dardar.moh Avatar answered Nov 11 '22 04:11

dardar.moh


The styles in the accepted answer aren't required to get headroom.js to work w/ Twitter Bootstrap 3. Simply following the instructions will work with navbar-fixed-top. The main thing is that you assign styles to these classes, otherwise nothing appears to happen.

.headroom--pinned {
    display: block;
}
.headroom--unpinned {
    display: none;
}
like image 2
Jack Frost Avatar answered Nov 11 '22 04:11

Jack Frost