Moving background on scroll using CSS gradient and variable

See the Pen moving bg using css gradient by trapti (@tripti1410) on CodePen.

In this blog post, we’ll introduce a technique that doesn’t require any additional HTML elements to create a captivating effect. We’ll be crafting a linear gradient that smoothly moves upwards or downwards while changing colors as you scroll. Let’s dive into the code!

HTML Markup

First, let’s set up the HTML structure for our content:

<div class="cont">
	<h1>HI</h1>
</div>

CSS Magic

Now, let’s apply the CSS styles to create the scroll-activated gradient effect:

.cont {
	max-width: 100vw;
	height: 100vh;
	background: linear-gradient(yellow 100%, white 0%);
	/* Just to make it look pretty */
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 5rem;
}

Let’s break down the key components of the CSS:

  1. Full viewport dimensions: We set the width and height of the container to 100% of the viewport’s width and height.
  2. Background Gradient: We create the linear gradient effect using the background property. It starts with a yellow color and gradually transitions to white color. background: linear-gradient(yellow 100%, white 0%). As it is, this will display a solid yellow color.

Exploring the Gradient

Now, let’s delve deeper into the gradient effect. In a linear gradient:

  • The first value is the direction.
  • The second is the start color with a value that determines how much this color should cover.
  • The third is the end color with a value that indicates how much this color should cover.
.cont {
	background: linear-gradient(to top, yellow 100%, white 0%);
}

The yellow color covers 100%, meaning the entire container is initially yellow. To achieve the effect of moving this yellow color from top to bottom and revealing the white color, we need to animate its coverage percentage. We can easily do this by using a CSS variable. Let’s convert the code above to accept a CSS variable.

.cont {
	--target: 100%;
	background: linear-gradient(yellow var(--target), white 0%);
}

Now, the yellow color coverage is accessible via a CSS variable. We can animate this percentage. Additionally, we specify the direction in which it should move; in this case, we use to top.

.cont {
	--target: 100%;
	background: linear-gradient(to top, yellow var(--target), white 0%);
}

To animate it, you can use the following JavaScript code. In this we are making CSS varible to 0% from 100%.

gsap.to(".cont", {
	"--target-1": "0%",
	ease: "none",
});

To make it work with scrolling, we can use ScrollTrigger, like this:

gsap.to(".cont", {
	"--target-1": "0%",
	ease: "none",
	scrollTrigger: {
		trigger: ".cont",
		markers: true,
		start: "top top",
		end: "+=1000",
		pin: true,
		scrub: 1,
	},
});

See the working example in the CodePen below.

See the Pen moving bg using css gradient by trapti (@tripti1410) on CodePen.

Now, what if the text color also changes as the user scrolls through it?

We need to add the background gradient to the text as well but altering colors. So that when background color becomes white text becomes yellow and vise versa. background property will give a background color to the text. Since we need to fill the color inside the text, we’ll use the following properties along with it: Code sample above showcases this as well.

h1 {
	background: linear-gradient(to top, white var(--target-1), yellow 0%);
	line-height: 0.95;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

And there you have it! Many effects can be created using this technique, and it can be fine-tuned further.

Thanks for reading, if you like my content then consider sharing it on Linkedin and Twitter and do tag me. Stay connected.
BACK HOME