Skip to content
Advertisement

Bootstrap 5: Hide/Show navbar after scroll 300px

I want to hide the Bootstrap navbar after scrolling for 300px.

At the moment I’m using the following code (from here).

It works but the navbar hides immediately after scrolling. I want it to hide after 300px. Is there a way to add that to the script?

HTML:

JavaScript

Javascript:

JavaScript

CSS:

JavaScript

Advertisement

Answer

Hello You can solve this problem by modifying the if conditional(scroll_top < 300). In addition to making the nav to fixed position, and giving the main content a margin top the size of the nav so that the content looks good.

The idea is that, analyze the code below for better understanding.

JavaScript
JavaScript
JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement