CSS3动画钟摆效果

Mad*_*ari 4 html css css3 css-animations

我想用纯CSS制作钟摆效果,但它并不流畅.

这是我想要的,但纯CSS.http://www.webdevdoor.com/demos/html5-pendulum-demo/

但我更喜欢根据它的位置看起来更像自然的速度变化.

小提琴

.bellImg {
  height: 20px;
  width: 20px;
  position: absolute;
  right: 10px;
  top: 18px;
  -webkit-animation-name: rotate;
  animation-delay: 3s;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: linear;
  -webkit-transform-origin: 50% 0%;
  -webkit-animation-timing-function: ease-in-out;
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  10% {
    -webkit-transform: rotate(10deg);
  }
  20% {
    -webkit-transform: rotate(20deg);
  }
  30% {
    -webkit-transform: rotate(10deg);
  }
  40% {
    -webkit-transform: rotate(5deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
  }
  60% {
    -webkit-transform: rotate(-5deg);
  }
  70% {
    -webkit-transform: rotate(-10deg);
  }
  80% {
    -webkit-transform: rotate(-20deg);
  }
  90% {
    -webkit-transform: rotate(-10deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
Run Code Online (Sandbox Code Playgroud)
<img class="bellImg" src="img/bell.png">
Run Code Online (Sandbox Code Playgroud)

Har*_*rry 7

您的代码中存在一些问题:

  • animation-timing-function被指定为ease-in-out.这表示动画开始和结束缓慢,但两者之间的速度更快.为了优雅和平等的移动,这应该设置为linear.

    这就是MDN关于缓入时间功能的说法:

    该关键字表示计时函数cubic-bezier(0.42,0.0,0.58,1.0).使用此计时功能,动画开始缓慢,加速然后在接近其最终状态时减速.一开始,它的行为类似于轻松入功能; 最后,它类似于缓出功能.

  • 没有所谓的价值linearanimation-direction.
  • 分裂不相等.也就是说,对于大约10%的间隙,它旋转10度,而对于其他间隙,它仅旋转5度.使分裂相等.

完成所有更正的以下片段可生成平滑动画.

.bellImg {
  height: 20px;
  width: 20px;
  position: absolute;
  right: 10px;
  top: 18px;
  -webkit-animation-name: rotate;
  animation-delay: 3s;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
  -webkit-transform-origin: 50% 0%;
  -webkit-animation-timing-function: linear;  /* or make your custom easing */
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(20deg);
  }
  75% {
    -webkit-transform: rotate(-20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
Run Code Online (Sandbox Code Playgroud)
<img class="bellImg" src="https://cdn1.iconfinder.com/data/icons/freeline/32/bell_sound_notification_remind_reminder_ring_ringing_schedule-48.png">
Run Code Online (Sandbox Code Playgroud)


设置动画的速度取决于位置(即,当它到达极端时减速并在中间加速)是不可能用纯CSS实现的(即使我们添加了额外的元素).

要根据其位置设置动画的速度,可以选择执行以下操作:

  • 将图像添加到容器元素中.对其进行动画处理,使其从20deg旋转到-40deg.
  • 让父动画1/3早于孩子开始RD两者的动画持续时间.也就是说,减少父母的延迟0.66s.这样做是为了让父母偏移孩子的初始轮换.所不同的是1/3 动画的持续时间,因为它是来0deg母公司所花费的时间.
  • 更改图像动画的关键帧,使旋转从-20deg到40deg.
  • 设置两者的animation-directionas alternate,使它们在前向进行第一次迭代,反向进行下一次迭代,依此类推.
  • 设置animation-timing-functionease-in-out,这样它会减慢,因为它接近极限.当动画持续时间增加时,效果更明显.

.container {
  position: absolute;
  height: 20px;
  width: 20px;
  /* right: 10px; commented for demo */
  top: 18px;
  transform: rotate(20deg);
  animation-name: rotate-container;
  animation-delay: 2.33s;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  transform-origin: 50% 0%;
  animation-timing-function: ease-in-out;
}
.bellImg {
  height: 100%;
  width: 100%;  
  transform: rotate(-20deg);
  animation-name: rotate;
  animation-delay: 3s;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  transform-origin: 50% 0%;
  animation-timing-function: ease-in-out;
}
@keyframes rotate {
  0% {
    transform: rotate(-20deg);
  }
  100% {
    transform: rotate(40deg);
  }
}
@keyframes rotate-container {
  0% {
    transform: rotate(20deg);
  }
  100% {
    transform: rotate(-40deg);
  }
}
Run Code Online (Sandbox Code Playgroud)
<script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
<div class='container'>
  <img class="bellImg" src="https://cdn1.iconfinder.com/data/icons/freeline/32/bell_sound_notification_remind_reminder_ring_ringing_schedule-48.png">
</div>
Run Code Online (Sandbox Code Playgroud)

代码段中仅使用无前缀库来避免浏览器前缀.