当前位置:   article > 正文

css3动画速度曲线_css3 animation速度曲线

css3 animation速度曲线

语法一

animation-timing-function: value;
  • 1
  • 2

value:
linear 动画从头到尾的速度是相同的。
ease 默认。动画以低速开始,然后加快,在结束前变慢。
ease-in 动画以低速开始。
ease-out 动画以低速结束。
ease-in-out 动画以低速开始和结束。
cubic-bezier(n,n,n,n) 在 cubic-bezier 函数中自己的值。可能的值是从 0 到 1 的数值

cubic-bezier动态设置
http://yisibl.github.io/cubic-bezier/#.42,.89,.45,-0.02

语法二

  <style>
    .animation {
      width: 50px;
      height: 50px;
      background-color: #ed3;
      -webkit-transition:  all 2s;
           -o-transition:  all 2s;
              transition:  all 2s;
    }
    .animation:hover {
      -webkit-transform:  translateX(100px) cubic-bezier(.17, .86, .73, .14);;
          -ms-transform:  translateX(100px) cubic-bezier(.17, .86, .73, .14);;
           -o-transform:  translateX(100px) cubic-bezier(.17, .86, .73, .14);;
              transform:  translateX(100px) cubic-bezier(.17, .86, .73, .14);;
    }
  </style>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/266118
推荐阅读
相关标签
  

闽ICP备14008679号