animation-timing-function:规定动画的速度曲线,默认是 “ease”
值 | 描述 |
---|---|
linear | 动画从头到尾的速度是相同的。匀速 |
ease | 默认。动画以低速开始,然后加快,在结束前变慢。 |
ease-in | 动画以低速开始。 |
ease-out | 动画以低速结束。 |
ease-in-out | 动画以低速开始和结束。 |
steps() | 指定了时间函数中的间隔数量(步长) |
steps()的例子
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
* {
margin: 0;
padding: 0;
}
div {
overflow: hidden;
width: 0;
height: 20px;
line-height: 20px;
font-size: 20px;
animation: w 4s steps(6) forwards;
}
@keyframes w {
0% {}
100% {
width: 140px;
}
}
</style>
</head>
<body>
<div>冰,生日快乐!</div>
</body>
</html>