html 叠加和微调器加载动画。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 叠加和微调器加载动画。相关的知识,希望对你有一定的参考价值。

// <div> progress overlay
.progress {
  @include fill_parent();
  @include flex_container(horizontal);
  @include flex_pack(center);
  @include flex_align(center);
  background-color: rgba(gray, .86);
  z-index: 10;

  &__inner {
    height: 40px;
    width: 40px;

    &::after {
      animation: rotate 600ms linear infinite;
      border: 1px solid white;
      border-top-color: orange;
      border-radius: 50%;
      content: '';
      display: block;
      height: 3rem;
      margin: -1.5rem 0 0 -1.5rem;
      position: absolute;
      left: 50%;
      top: 50%;
      width: 3rem;
      z-index: 12;
    }
  }
}

@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

<div
  class="progress  animated  fadeIn"
  data-ng-if="vm.foo"
>
  <div class="progress__inner  animated  bounceIn"></div>
</div>

以上是关于html 叠加和微调器加载动画。的主要内容,如果未能解决你的问题,请参考以下文章

如何在我的叠加 div 中垂直居中我的跨度?

HTML5 视频:在视频和海报之间显示加载器/微调器

微调器不想从超级视图中删除

使用微调器加载 jQuery 整个 HTML 页面

css CSS / HTML仅加载微调器

AngularJS - 动画回调/序列