website-v2 icon indicating copy to clipboard operation
website-v2 copied to clipboard

[Suggestion] Add a gradient animation to the background

Open LankyBox01 opened this issue 3 years ago • 0 comments

You can see an example on my website: https://lankybox01.leahcimto.com/

Here's the source code:

body {
	background: rgb(26,32,44);
	background: linear-gradient(90deg, rgba(26,32,44,1) 0%, rgba(29,48,87,1) 100%);
	animation: move 15s ease infinite;
	background-size: 500% 500%;
}

@keyframes move {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

Maybe we can do a similar animation with the colors of scratch in the website?

LankyBox01 avatar Jul 31 '21 20:07 LankyBox01