Header Fade in on scroll

Is there any way to have the header fade in while scrolling similar to this site -https://www.antler.co

You can see an example here:
https://www.wix.com/corvid/example/sticky-header

and if you want to add fade-in/fade-out animation, just add them to the show() and hide() functions:
https://www.wix.com/corvid/reference/$w.EffectOptions.html#FadeEffectOptions

(P.S. there’re other ways to do it. For example, you can change the opacity of the header background itself (rgba) without using a strip. And you can create a fade-in-out effect using setInertval that will assign a gradient of opcity to the header background. But the linked example is simpler).

1 Like

Thank you so much! This worked perfectly!

you’re welcome :slight_smile: