Animation How to - Start different elements on different keyframes of an animation








Question

We would like to know how to start different elements on different keyframes of an animation.

Answer


in CSS<!--  w ww. java  2 s  .  c  o  m-->
<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
#test {
  height: 1em;
  background: red;
  -webkit-animation: test 6s ease -3s infinite;
}

@-webkit-keyframes test {
  from { width:0%;}
  50%{width:100%;}
  to {width: 0%;}
}
</style>
</head>
<body>
  <div id="test"></div>
</body>
</html>

The code above is rendered as follows: