website-v2
website-v2 copied to clipboard
[Suggestion] Add a gradient animation to the background
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?