Se hace con jQuery es un efecto sencillo, con este código es suficiente:
Código Javascript
:
Ver original$(document).ready(function(){
$(window).bind('scroll', function() {
var navHeight = $( window ).height() - 70;
if ($(window).scrollTop() > navHeight) {
$('nav').addClass('fixed');
}
else {
$('nav').removeClass('fixed');
}
});
});
Te dejo un texto que te explica a fondo como funciona este código:
http://stanislav.it/scroll-to-top-then-fixed-navigation-effect-with-jquery-and-css-free-download/
Saludos