CSS动画时间

前端之家收集整理的这篇文章主要介绍了CSS动画时间前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我很难在CSS中制作这个预加载器动画.

这就是我想要做的.

我究竟做错了什么?

.l {
  animation: pulse .8s infinite linear;
}
.m {
  animation: pulse .8s infinite linear;
  animation-delay: .2s;
}
.r {
  animation: pulse .8s infinite linear;
  animation-delay: .4s;
}

@keyframes pulse {
  0%   { padding: 8px; }
  50% { padding: 16px; }
  100%  { padding: 8px; }
}
html,body {
  height: 100%;
}

.table {
  display: table;
  width: 100%;
  height: 100%;
  text-align: center;
}

.cell {
  display: table-cell;
  vertical-align: middle;
}

.circle {
  display: inline-block;
  padding: 8px;
  margin: 0 0.6em;
  background: #000;
  border-radius: 100%;
}

.l {
  animation: pulse .8s infinite linear;
}
.m {
  animation: pulse .8s infinite linear;
  animation-delay: .2s;
}
.r {
  animation: pulse .8s infinite linear;
  animation-delay: .4s;
}

@keyframes pulse {
  0%   { padding: 8px; }
  50% { padding: 16px; }
  100%  { padding: 8px; }
}
<div class="table">
  <div class="cell">
    <div class="circle l"></div>
    <div class="circle m"></div>
    <div class="circle r"></div>
  </div>
</div>

解决方法

使用 step-end
animation: pulse .8s infinite step-end;
body{
  padding-top: 40px; /* for demonstration purpose */
}

.table {
  display: table;
  width: 100%;
  height: 100%;
  text-align: center;
}

.cell {
  display: table-cell;
  vertical-align: middle;
}

.circle {
  display: inline-block;
  padding: 8px;
  margin: 0 0.6em;
  background: #000;
  border-radius: 100%;
}

.l {
  animation: pulse 2s infinite step-end;
  animation-delay: .2s;
}
.m {
  animation: pulse 2s infinite step-end;
  animation-delay: .4s;
}
.r {
  animation: pulse 2s infinite step-end;
  animation-delay: .6s;
}

@keyframes pulse {
  0%   { transform: scale( 1 ); }
  50% { transform: scale( 2 ); }
  100%  { transform: scale( 1 ); }
}
<div class="table">
  <div class="cell">
    <div class="circle l"></div>
    <div class="circle m"></div>
    <div class="circle r"></div>
  </div>
</div>

JSFiddle

现在只需调整动画持续时间和延迟时间,使其更像OP.

更新:使用transform:scale()使圆圈从其中心扩展 – reference

原文链接:https://www.f2er.com/css/214120.html

猜你在找的CSS相关文章