When I say header I mean a <h1>
. But I have a fixed header on the left side of my page and I am using a parallax so that as I scroll down the background div changes.
I want the colour of h1 to change as I scroll down, exactly like this website does. (check the nightshift header on the top left!).
I have tried using Jquery like this:
if($(window).scrollTop() > 2600) {
$(".leftHeaders a").css("color", "black");
But you dont get the cool transition of colour as you scroll down.