码迷,mamicode.com
首页 > Web开发 > 详细

js 动画

时间:2019-11-19 13:56:56      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:height   lte   color   ota   pre   osi   init   absolute   animation   

普通

.wise-loading {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  color: #3288ff;
  animation: wise-loading 0.6s linear 0s infinite alternate;
  /*          name        周期花费时间  开始时间  动画次数  轮流反向播放*/
}
@keyframes wise-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

立方贝塞尔曲线

transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);

js 动画

标签:height   lte   color   ota   pre   osi   init   absolute   animation   

原文地址:https://www.cnblogs.com/smzd/p/11888433.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!