I would like to build a navigation-bar effect like it is on http://dootrix.com/ on my page (after scrolling down the bar getting smaller and the logo changes). Im using boot
I am using this code for my project
$(window).scroll ( function() { if ($(document).scrollTop() > 50) { document.getElementById('your-div').style.height = '100px'; //For eg } else { document.getElementById('your-div').style.height = '150px'; } } );
Probably this will help