美文网首页
Animation 曲线运动测试

Animation 曲线运动测试

作者: Micro同学 | 来源:发表于2020-10-20 16:29 被阅读0次

测试实例如下:

<div class="outer">
  <div class="ball"></div>
</div>
.outer {
  width: 1000px;
  height: 500px;
  background: pink;
  position: relative;
}
.ball {
  position: absolute;
  width: 50px;
  height: 50px;
  background: aqua;
  animation: move1 1s 0s 1 linear, move2 1s 0s 1 cubic-bezier(1,0,1,1), move3 1s 1s 1 linear, move4 1s 1s 1 cubic-bezier(0,1,1,1);
  animation-fill-mode: forwards;
}
@-webkit-keyframes move1 {
  0% {
    top: 0;
  }
  100% {
    top: 200px;
  }
}
@-webkit-keyframes move2 {
  0% {
    left: 0;
  }
  100% {
    left: 200px;
  }
}
@-webkit-keyframes move3 {
  0% {
    top: 200px;
  }
  100% {
    top: 0;
  }
}
@-webkit-keyframes move4 {
  0% {
    left: 200px;
  }
  100% {
    left: 400px;
  }
}

相关文章

  • Animation 曲线运动测试

    测试实例如下:

  • 移动端动画库的设计与实现

    Usage npm install io-animation 测试case 查看百度脑图附件 测试页面 见demo...

  • 5.1曲线运动的考点

    【考点1】:曲线运动及其位移 运动轨迹是曲线的运动叫曲线运动 位移公式 位移的方向与轴的夹角为,则 【考点2】:曲...

  • “拐着弯”的考你

    本章介绍曲线运动,即受力方向与运动方向不在同一直线上的运动方式,这种运动方式是比较接近日常生活的。 『曲线运动』 ...

  • PPT动画中的 曲线运动

    曲线运动相对直线运动给人的感觉更柔和,更自然。实际中,物体的运动轨迹也常是曲线的。在PPT动画里也可以实现曲线运动...

  • 前端训练营第九周学习总结

    动画 Animation @keyframes定义 animation: 使用 属性 The animation ...

  • Android 五类动画简单整理

    分类5种: Tween Animation、Property Animation Frame Animation(...

  • css3动画

    animation-name animation-duration animation-timing-functi...

  • 2022-03-16关于平抛运动的化曲为直

    关于平抛运动的化曲为直,绝对不是分成小段之后曲线运动可以看作直线运动,而是通过分解位移和速度的方式,将曲线运动变成...

  • 第十二副导图

    这张导图主要说明的是物理的曲线运动,中心图是一个摩天轮,枝干主要介绍了曲线运动的几种类型以及相关概念和公式

网友评论

      本文标题:Animation 曲线运动测试

      本文链接:https://www.haomeiwen.com/subject/camdmktx.html