VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > 网站开发 > HTML >
  • css教程之animation-timing-function [播放方式]

语法

animation-timing-function: linear | ease | ease-in | ease-out | ease-in-out | step-start | step-end | steps(<number>[, [ start | end ] ]?) | cubic-bezier(<number>, <number>, <number>, <number>) [, linear | ease | ease-in | ease-out | ease-in-out | step-start | step-end | steps(<number>[, [ start | end ] ]?) | cubic-bezier(<number>, <number>, <number>, <number>) ]*; 指定对象动画的持续时间 。
语法项目 说明
初始值 ease
适用于 所有元素
可否继承
媒介 视觉
版本 CSS3.0

说明

检索或设置对象动画的过渡类型

如果提供多个属性值,以逗号进行分隔。

取值

ease:缓解效果,等同于cubic-bezier(0.25,0.1,0.25,1.0)函数,既立方贝塞尔。

linear:线性效果,等同于cubic-bezier(0.0,0.0,1.0,1.0)函数。

ease-in:渐显效果,等同于cubic-bezier(0.42,0,1.0,1.0)函数。

ease-out:渐隐效果,等同于cubic-bezier(0,0,0.58,1.0)函数。

ease-in-out:渐显渐隐效果,等同于cubic-bezier(0.42,0,0.58,1.0)函数。

step-start:马上转跳到动画结束状态。

step-end:保持动画开始状态,直到动画执行时间结束,马上转跳到动画结束状态。

steps(<number>[, [ start | end ] ]?):第一个参数number为指定的间隔数,即把动画分为n步阶段性展示,第二个参数默认为end,设置最后一步的状态,start为结束时的状态,end为开始时的状态,若设置与animation-fill-mode的效果冲突,而以animation-fill-mode的设置为动画结束的状态。

cubic-bezier(<number>, <number>, <number>, <number>):特殊的立方贝塞尔曲线效果。

实例代码

CSS

				
  1. .demo_box{
  2.     -webkit-animation:f1 2s 0.5s forwards;
  3.     -moz-animation:f1 2s 0.5s forwards;
  4.     position:relative;
  5.     left:10px;
  6.     width:50px;
  7.     height:50px;
  8.     border-radius:50px;
  9.     margin:10px 0;
  10.     overflow:hidden;
  11. }
  12. .ease{ 
  13.     -webkit-animation-timing-function:ease;
  14.     -moz-animation-timing-function:ease;
  15. }
  16. .linear{
  17.     -webkit-animation-timing-function:linear;
  18.     -moz-animation-timing-function:linear;
  19. }
  20. .ease-in{
  21.     -webkit-animation-timing-function:ease-in;
  22.     -moz-animation-timing-function:ease-in;
  23. }
  24. .ease-out{
  25.     -webkit-animation-timing-function:ease-out;
  26.     -moz-animation-timing-function:ease-out;
  27. }
  28. .ease-in-out{
  29.     -webkit-animation-timing-function:ease-in-out;
  30.     -moz-animation-timing-function:ease-in-out;
  31. }
  32. .step-start{
  33.     -webkit-animation-timing-function:step-start;
  34.     -moz-animation-timing-function:step-start
  35. }
  36. .step-end{
  37.     -webkit-animation-timing-function:step-end;
  38.     -moz-animation-timing-function:step-end;
  39. }
  40. .steps{
  41.     -webkit-animation-timing-function:steps(2);
  42.     -moz-animation-timing-function:steps(2)
  43. }
  44. .cubic-bezier{
  45.     -webkit-animation-timing-function:cubic-bezier(0.52,0,0.58,1.0);
  46.     -moz-animation-timing-function:cubic-bezier(0.52,0,0.58,1.0);
  47. }
  48. @-webkit-keyframes f1{
  49.     0%{left:10px;}
  50.     100%{left:500px;}
  51. }
  52. @-moz-keyframes f1{
  53.     0%{left:10px;}
  54.     100%{left:500px;background:#f00}
  55. }
复制
HTML

				
  1. <div class="demo_box ease">ease</div>
  2. <div class="demo_box linear">linear</div>
  3. <div class="demo_box ease-in">ease-in</div>
  4. <div class="demo_box ease-out">ease-out</div>
  5. <div class="demo_box ease-in-out">ease-in-out</div>
  6. <div class="demo_box step-start">step-start</div>
  7. <div class="demo_box step-end">step-end</div>
  8. <div class="demo_box steps">steps(2)</div>
  9. <div class="demo_box cubic-bezier">cubic-bezier(0.52,0,0.58,1.0)</div>
复制
运行一下 »

兼容性

IE Firefox Opera Safari Chrome
IE 10+ Firefox 3.5+ 目前暂无版本支持 Safari 10+ Chrome 2.0+


相关教程