animate.css动画 循环播放出现衔接不上的问题.感觉有卡顿

发布于 2021-11-24 02:01:01 字数 2842 浏览 980 评论 1

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-animation-iteration-count:10;
  animation-iteration-count:10;

}



@-webkit-keyframes hinge {
  1%  {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(0deg) translateY(0);
    transform: rotate(0deg) translateY(0);
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
   -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
 
  }

}




如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绝影如岚 2021-11-27 19:27:37

-webkit-animation-direction:alternate; /* Safari 和 Chrome */ 

貌似这个可以解决

不晓得是不是完美的解决方案

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文