<!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>
div{
overflow: hidden;
font-size: 20px;
width: 0;
height: 30px;
/* 让文字一行内显示 */
white-space: nowrap;
animation: w 4s steps(10) forwards;
}
@keyframes w{
0%{
width: 0;
}
100%{
width: 200px;
}
}
</style>
</head>
<body>
<div>天涯海角我在这里等你</div>
</body>
</html>
每个字20px,加一起正好200px,分成10步。