Perform Animation on the background-color property with CSS


To implement animation on the background-color property with CSS, you can try to run the following code

Example

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            width: 400px;
            height: 300px;
            background: yellow;
            animation: myanim 3s infinite;
         }
         @keyframes myanim {
            20% {
               background-color: maroon;
            }
         }
      </style>
   </head>
   <body>
      <div></div>
   </body>
</html>

karthikeya Boyini
karthikeya Boyini

I love programming (: That's all I know

Updated on: 25-Jun-2020

79 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements