Languages
[Edit]
EN

JavaScript - change navbar style on scroll bottom event

0 points
Created by:
nickkk0
647

In this article, we would like to show you how to change navbar style on scroll event using JavaScript.

Quick solution:

 

Practical example

Edit

In this example, we present how to change the navbar element color when we scroll the web page 20px to the bottom.

Explanation:

  • We use addEventListener to add scroll event to the window element, so the updateStyle() function will be called every time we scroll the web page,  
  • every time the updateStyle() function is called, it checks the distance from the top (scrollTop property), if it is more than 20px it adds the blue class to the navbar element or removes it if it's less than 20px,
  • position: sticky with top: 0 makes the navbar always visible at the top of the web page,
  • transition: 0.5s makes smooth color change effect.

Note:

In the solution we use both document.body and document.documentElement:

because of the browsers compatibility, to make sure it always works.

 

References

Edit
  1. Element.scrollTop - Web APIs | MDN

Alternative titles

  1. JavaScript - change element style after scrolling down
  2. JavaScript - change navbar style on scroll down event
  3. JavaScript - update element styles on scroll down event (scroll bottom)
1
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join