Skip to content
Advertisement

Hide an element per multiple scrollable divs

I am trying to fade out a logo at the top of three divs onscroll.

I would like it so when a user scrolls one div, the logo fades from div that is being scrolled, not all of them.

There is also a problem with scrolling to the top again, the logo is faded. It should return to full opacity.

Here is what I have so far.

JavaScript
JavaScript
JavaScript

Advertisement

Answer

The scroll function below chooses the proper logo, depending on which <div/> is scrolled. It also consolidates the 3 scroll event handlers into one.

The problem you had in fading back to full opacity is because your first scroll handler had (10-scroll)/100) instead of (100-scroll)/100).

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