How do you recreate a navigation bar like the one found Here
here if you scroll, not only does the navigation bar follow you at the top, but the symbol of the company fades into the navigation bar.
Can someone help or guide me in the right direction please?
I created this:
jsBin demo
jQuery:
HTML:
CSS:
The trick is to get the position of our
#nav, and scrolling the page do something if the position is smaller than thewindow scrollTop.To achieve that smooth effect you have to make sure you have a replacement element for the
#navonce we set it’s position tofixedto prevent a ‘jumpy’ effect.That element is the
nav‘s parent#navigationthat has the same height as it’s children.