- 1
Moving gradient colors with @keyframes
Can I move the colors on a gradient using @keyframes? If I can, then how?
2 ответов
+ 4
@keyframes name {
0% {
background-image: linear-gradient (deg, colors);
}
100% { background-image: linear-gradient(deg, colors);
}
}
- 1
thx