欢迎来到DIVCSS5查找CSS资料与学习DIV CSS布局技术!
  这次给大家带来html5怎样做出图片转圈的动画效果,h5做出图片转圈的动画效果的注意事项有哪些,下面就是实战案例,一起来看一下。
 
  @mixin ani-btnRotate{
 
  @keyframes btnRotate{
 
  from{transform: rotateZ(0);}
 
  to{transform: rotateZ(360deg);}
 
  }
 
  }
 
  @include ani-btnRotate;
 
  #circle{
 
  position: absolute;
 
  left: 50%;
 
  width: REM(338);
 
  height: REM(338);
 
  margin-top: REM(200);
 
  margin-left: REM(-338/2);
 
  transform-origin: center center ;
 
  animation: btnRotate 1s 1s linear forwards;
 
  }

如需转载,请注明文章出处和来源网址:http://www.divcss5.com/html/h62435.shtml