CSS3动画效果7.13

例如:

<body>

  <div class="div1"></div>

</body>

CSS:

@keyframes myfirst {   (有的浏览器或者HTML版本过低就的加上-webkit-keyframes) 
  0% {
  150px;
  }
   
  30% {
  300px;
  }
   
  50% {
  500px;
  }
   
  100% {
  600px;
  }
  }
   
  .div1 {
  150px;
  height: 150px;
  background-color: #21bbca;
  /*-webkit-animation: myfirst 4s ease infinite;*/
  }
   
原文地址:https://www.cnblogs.com/tk900123/p/4643889.html