Animation How to - Change background color in animation








Question

We would like to know how to change background color in animation.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.test {<!--from  w w  w  .  ja  va 2s.c o  m-->
  width: 200px;
  height: 200px;
  -webkit-animation: play 5s infinite;
}

@-webkit-keyframes play { 
  0% {background: red;}
  24%{background:red;}
  25%{background:green;}
  44%{background:green;}
  45%{background:blue;}
  54%{background:blue;}
  55%{background:orange;}
  74%{background:orange;}
  75%{background:black;}
  99%{background:black;}
  100%{background:white;}
}
</style>
</head>
<body>
  <div class="test"></div>
</body>
</html>

The code above is rendered as follows: