- CSS 教程
- CSS - 教程
- CSS - 简介
- CSS - 语法
- CSS - 选择器
- CSS - 包含
- CSS - 度量单位
- CSS - 颜色
- CSS - 背景
- CSS - 字体
- CSS - 文本
- CSS - 图像
- CSS - 链接
- CSS - 表格
- CSS - 边框
- CSS - border-block 属性
- CSS - 边框内联
- CSS - 边距
- CSS - 列表
- CSS - Padding 属性
- CSS - 光标
- CSS - 轮廓
- CSS - 维度
- CSS - 滚动条
- CSS - 内联块
- CSS - 下拉列表
- CSS - visibility 属性
- CSS - Overflow 属性
- CSS - 清除修复
- CSS - float(浮点)
- CSS - 箭头
- CSS - resize 属性
- CSS - quotes 属性
- CSS - order 属性
- CSS - Position 属性
- CSS - hypens 属性
- CSS - :hover(悬停)
- CSS - display(显示)
- CSS - focus 属性
- CSS - zoom(缩放)
- CSS - translate 属性
- CSS - Height 属性
- CSS - hyphenate-character 属性
- CSS - Width 属性
- CSS - opacity 属性
- CSS - z-index 属性
- CSS - bottom 属性
- CSS - 导航栏
- CSS - 覆盖
- CSS - 表单
- CSS - 对齐
- CSS - 图标
- CSS - 图片库
- CSS - 注释
- CSS - 加载器
- CSS - Atrribute 选择器属性
- CSS - 运算器
- CSS - root
- CSS - 盒子模型
- CSS - 计数器
- CSS - Clip (Obsolete) 属性
- CSS - writing-mode 属性
- CSS - Unicode-bidi 属性
- CSS - min-content 属性
- CSS - 全部
- CSS - inset 属性
- CSS - isolation 属性
- CSS - overscroll-behavior 属性
- CSS - justify-items 属性
- CSS - justify-self 属性
- CSS - tab-size 属性
- CSS - pointer-event 属性
- CSS - place-content 属性
- CSS - place-items 属性
- CSS - place-self 属性
- CSS - max-block-size 属性
- CSS - min-block-size 属性
- CSS - mix-blend-mode 属性
- CSS - max-inline-size 属性
- CSS - min-inline-size 属性
- CSS - offset 属性
- CSS - accent-color 属性
- CSS - user-select 属性
- CSS 高级
- CSS - grid 属性
- CSS - Grid 布局
- CSS - flexbox
- CSS - vertical-align 属性
- css - positioning
- css - layers
- css - pseudo_classes
- CSS - 伪元素
- CSS - @ 规则
- CSS 滤镜 - text-effect 属性
- CSS 分页媒体
- CSS 打印
- CSS - 布局
- CSS - 验证
- CSS - 图像精灵
- CSS - !important
- CSS - 数据类型
- CSS3 教程
- CSS - 圆角
- CSS - 边框图像
- CSS - 多种背景
- CSS - 渐变
- CSS - box-shadow 属性
- CSS - box-decoration-break 属性
- CSS - caret-color 属性
- CSS - text-shadow 属性
- CSS - 2D 转换
- CSS - 3D 变换
- CSS - transition 属性
- CSS - 动画
- CSS - 多列布局
- CSS - 盒子大小调整
- CSS - 工具提示
- CSS - buttons
- CSS - 分页
- CSS - 变量
- CSS - 媒体查询
- CSS - 值函数
- CSS - 数学函数
- CSS - Mask 属性
- CSS - shape-outside 属性
- CSS - 样式图像
- CSS - 特异性
- CSS - 自定义属性
- CSS 响应式
- CSS - 响应式网页设计 (RWD)
- CSS - 响应式设计视口
- CSS - 响应式网格视图
- CSS - 响应式媒体查询
- CSS - 响应式图像
- CSS - 响应式视频
- CSS - 响应式框架
- CSS 引用
- CSS - 所有属性列表
- CSS - 颜色引用
- CSS - 浏览器支持参考
- CSS - 网页字体
- CSS 工具
- CSS - PX 到 EM 的转换
CSS - animation-timing-function 属性
CSS animation-timing-function 属性确定动画的速度曲线,该曲线确定动画从一组 CSS 样式过渡到另一组 CSS 样式所花费的时间。它决定了动画的节奏。
语法
animation-timing-function: linear | ease | ease-in | ease-out | ease-in-out | step-start | step-end | steps(int, start | end) | cubic-bezier(n, n, n, n) | initial | inherit;
属性值
值 | 描述 |
---|---|
linear | 动画从头到尾都具有相同的速度。 |
ease | 动画开始缓慢,然后加快速度,然后再次减慢。违约。 |
ease-in | 动画开始缓慢,然后加快速度。 |
ease-out | 动画播放正常,但最后会减慢速度。 |
ease-in-out | 动画开始缓慢,然后加快速度,然后再次减慢。 |
step-start | 动画在关键帧动画开始时直接跳转到结束状态。 |
step-end | 动画在关键帧动画结束时跳转到结束状态。 |
steps(int,start|end) | 指定了一个步进函数,其步数与开始或结束的位置相符(例如,steps(6, end))。 |
cubic-bezier(n,n,n,n) | 使用三次-贝塞尔曲线(例如,cubic-bezier(0.25, 0.1, 0.25, 1.0))定义自定义定时函数。可能的值为 0 到 1。. |
initial | 将属性设置为其默认值。 |
inherit | 从其父元素继承属性。 |
CSS 动画计时函数属性示例
以下示例使用不同的值和函数说明 animation-timing-function 属性。
在整个过程中设置相同的动画速度
为了让动画从动画开始到结束具有相同的速度,我们使用线性值。在以下示例中,linear 值已用于 animation-timing-function 属性。
<!DOCTYPE html>
<html>
<head>
<style>
h3 {
width: 200px;
text-align: center;
animation-name: text;
animation-duration: 4s;
animation-iteration-count: infinite;
border: 2px solid black;
}
#linear {
animation-timing-function: linear;
}
@keyframes text {
from {
margin-left: 35%;
}
to {
margin-left: 0%;
}
}
</style>
</head>
<body>
<h2>CSS animation-timing-function property </h2>
<h3 id="linear">Linear value</h3>
</body>
</html>
设置动画的慢开始和慢结束
为了让动画缓慢开始,然后加快速度,然后再次减慢速度,我们使用 ease 值。在以下示例中,ease 值已用于 animation-timing-function 属性。
<!DOCTYPE html>
<html>
<head>
<style>
h3 {
width: 200px;
text-align: center;
animation-name: text;
animation-duration: 4s;
animation-iteration-count: infinite;
border: 2px solid black;
}
#linear {
animation-timing-function: ease;
}
@keyframes text {
from {
margin-left: 35%;
}
to {
margin-left: 0%;
}
}
</style>
</head>
<body>
<h2>CSS animation-timing-function property </h2>
<h3 id="linear">Ease value</h3>
</body>
</html>
设置动画的慢启动
为了让动画缓慢开始,然后加快速度,我们使用缓入值。在以下示例中,缓入值已用于 animation-timing-function 属性。
<!DOCTYPE html>
<html>
<head>
<style>
h3 {
width: 200px;
text-align: center;
animation-name: text;
animation-duration: 4s;
animation-iteration-count: infinite;
border: 2px solid black;
}
#linear {
animation-timing-function: ease-in;
}
@keyframes text {
from {
margin-left: 35%;
}
to {
margin-left: 0%;
}
}
</style>
</head>
<body>
<h2>CSS animation-timing-function property </h2>
<h3 id="linear">Ease-in value</h3>
</body>
</html>
为动画设置慢结束
为了让动画以正常速度播放,但在结束时减慢速度,我们使用缓出值。在以下示例中,ease-out 值已用于 animation-timing-function 属性。
<!DOCTYPE html>
<html>
<head>
<style>
h3 {
width: 200px;
text-align: center;
animation-name: text;
animation-duration: 4s;
animation-iteration-count: infinite;
border: 2px solid black;
}
#linear {
animation-timing-function: ease-out;
}
@keyframes text {
from {
margin-left: 35%;
}
to {
margin-left: 0%;
}
}
</style>
</head>
<body>
<h2>CSS animation-timing-function property </h2>
<h3 id="linear">Ease-out value</h3>
</body>
</html>
设置动画的慢开始和慢结束
为了让动画慢慢开始,然后选择一些速度,然后在结束时减慢速度,我们还可以使用缓入和缓出值的组合,即缓入和缓出值,即缓入和缓出值。在以下示例中,ease-in-out 值已用于 animation-timing-function 属性。
<!DOCTYPE html>
<html>
<head>
<style>
h3 {
width: 200px;
text-align: center;
animation-name: text;
animation-duration: 4s;
animation-iteration-count: infinite;
border: 2px solid black;
}
#linear {
animation-timing-function: ease-in-out;
}
@keyframes text {
from {
margin-left: 35%;
}
to {
margin-left: 0%;
}
}
</style>
</head>
<body>
<h2>CSS animation-timing-function property </h2>
<h3 id="linear">Ease-in-out value</h3>
</body>
</html>
设置突然跳转到“开始”
为了让动画在动画的关键帧开始时直接达到结束状态,从而导致突然的变化,我们使用 step-start 值。在以下示例中,step-start 值已用于 animation-timing-function 属性。
<!DOCTYPE html>
<html>
<head>
<style>
.box {
width: 100px;
height: 50px;
border: 2px solid black;
display: flex;
justify-content: center;
animation: move 6s infinite;
}
.step-start {
animation-timing-function: step-start;
}
@keyframes move {
0%,
100% {
transform: translateX(0);
}
50% {
transform: translateX(250px);
}
}
</style>
</head>
<body>
<h2>CSS animation-timing-function property</h2>
<div class="box step-start">Step-start</div>
</body>
</html>
设置突然跳转到结束
为了让动画在动画的关键帧结束时直接达到结束状态,从而导致突然的变化,我们使用 step-end 值。在以下示例中,step-end 值已用于 animation-timing-function 属性。
<!DOCTYPE html>
<html>
<head>
<style>
.box {
width: 100px;
height: 50px;
border: 2px solid black;
display: flex;
justify-content: center;
animation: move 6s infinite;
}
.step-start {
animation-timing-function: step-end;
}
@keyframes move {
0%,
100% {
transform: translateX(0);
}
50% {
transform: translateX(250px);
}
}
</style>
</head>
<body>
<h2>CSS animation-timing-function property</h2>
<div class="box step-start">Step-end</div>
</body>
</html>
设置阶梯动画
为了让动画在步长间隔内移动,我们使用 steps() 函数。它接受两个参数,第一个是整数,第二个是“start”或“end”,指定值在间隔内发生变化的点。在以下示例中,整数为 4,第二个参数为 start。
<!DOCTYPE html>
<html>
<head>
<style>
.box {
width: 100px;
height: 50px;
border: 2px solid black;
display: flex;
justify-content: center;
animation: move 6s infinite;
}
.step-start {
animation-timing-function: steps(4,start);
}
@keyframes move {
0%,
100% {
transform: translateX(0);
}
50% {
transform: translateX(250px);
}
}
</style>
</head>
<body>
<h2>CSS animation-timing-function property</h2>
<div class="box step-start">Steps(4,start)</div>
</body>
</html>
设置变速动画
为了让动画以可变速度进行,我们使用 custom-beizer() 函数。该函数表示一条三次贝塞尔曲线,由四个点P0,P1,P2,P3定义:P0(开始)和P3(结束)。在以下示例中,函数中使用了 0.1、0.7、1.0 和 0.1 值。
<!DOCTYPE html>
<html>
<head>
<style>
.box {
width: 100px;
height: 50px;
border: 2px solid black;
display: flex;
justify-content: center;
align-items: center;
animation: move 6s infinite;
}
.cubic {
animation-timing-function: cubic-bezier(0.1, 0.7, 1.0, 0.1);
}
@keyframes move {
0%,100% {
transform: translateX(0);
}
50% {
transform: translateX(250px);
}
}
</style>
</head>
<body>
<h2>CSS animation-timing-function property</h2>
<div class="box cubic">Cubic Beizer</div>
</body>
</html>
支持的浏览器
属性 | |||||
---|---|---|---|---|---|
animation-timing-function | 43.0 | 10.0 | 16.0 | 9.0 | 30.0 |