-
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
- .demo_box{
- -webkit-animation:f1 2s 0.5s forwards;
- -moz-animation:f1 2s 0.5s forwards;
- position:relative;
- left:10px;
- width:50px;
- height:50px;
- border-radius:50px;
- margin:10px 0;
- overflow:hidden;
- }
- .ease{
- -webkit-animation-timing-function:ease;
- -moz-animation-timing-function:ease;
- }
- .linear{
- -webkit-animation-timing-function:linear;
- -moz-animation-timing-function:linear;
- }
- .ease-in{
- -webkit-animation-timing-function:ease-in;
- -moz-animation-timing-function:ease-in;
- }
- .ease-out{
- -webkit-animation-timing-function:ease-out;
- -moz-animation-timing-function:ease-out;
- }
- .ease-in-out{
- -webkit-animation-timing-function:ease-in-out;
- -moz-animation-timing-function:ease-in-out;
- }
- .step-start{
- -webkit-animation-timing-function:step-start;
- -moz-animation-timing-function:step-start
- }
- .step-end{
- -webkit-animation-timing-function:step-end;
- -moz-animation-timing-function:step-end;
- }
- .steps{
- -webkit-animation-timing-function:steps(2);
- -moz-animation-timing-function:steps(2)
- }
- .cubic-bezier{
- -webkit-animation-timing-function:cubic-bezier(0.52,0,0.58,1.0);
- -moz-animation-timing-function:cubic-bezier(0.52,0,0.58,1.0);
- }
- @-webkit-keyframes f1{
- 0%{left:10px;}
- 100%{left:500px;}
- }
- @-moz-keyframes f1{
- 0%{left:10px;}
- 100%{left:500px;background:#f00}
- }
复制
HTML
运行一下 »- <div class="demo_box ease">ease</div>
- <div class="demo_box linear">linear</div>
- <div class="demo_box ease-in">ease-in</div>
- <div class="demo_box ease-out">ease-out</div>
- <div class="demo_box ease-in-out">ease-in-out</div>
- <div class="demo_box step-start">step-start</div>
- <div class="demo_box step-end">step-end</div>
- <div class="demo_box steps">steps(2)</div>
- <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+ |
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式