css3动画 keyframe animation

<div class="box" ></div>
@keyframes move{
  0% { 100px;}
  50% { 200px;}
  100%{ 100px;}
}
@-webkit-keyframes move{
  0% { 100px;}
  50% { 200px;}
  100%{ 100px;}
}

.box{
   100px;
  height: 100px;
  background-color: red;
  margin: 300px 100px;

  &:hover{
    animation: move 2s;
    -webkit-animation: move 2s;
  }

}
原文地址:https://www.cnblogs.com/150536FBB/p/12971081.html