Kevin Powell - CommunityKP-C
Kevin Powell - Communityβ€’10mo agoβ€’
3 replies
KTO96

Metallic animated CSS Gradient

I have an animated CSS only Gradient on https://westnine.tempurl.host/ that I am trying to make look like a metallic shimmer but only using the colours within the SVG.

At present it is looking a bit rainbow-y for lack of a better word.

Can anyone help? πŸ™πŸ»

Here is my CSS:
.bg-vector {
position: absolute;
right:0;
top:0;
z-index: -1;
filter: hue-rotate(0deg);
animation: shimmer 2s infinite;
}

@keyframes shimmer {
0% {
filter: hue-rotate(0deg);
}
100% {
filter: hue-rotate(360deg);
}
}
West Nine | Website Coming SoonKieran
West Nine - Website Coming Soon
Was this page helpful?