In this tutorial, you will learn how to add a background color animation with CSS. Watch the video below for a detailed tutorial.
body {
animation: changeBgColor 30s infinite;
}
@keyframes changeBgColor {
0% {
background-color: blue;
}
10% {
background-color: green;
}
25% {
background-color: yellow;
}
50% {
background-color: red;
}
75% {
background-color: purple;
}
50% {
background-color: pink;
}
}