<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
@keyframes typing { from { width: 0; } }
@keyframes blink-caret { 50% { border-color: transparent; } }
h1 {
font: bold 200% Consolas, Monaco, monospace;
border-right: .1em solid;
width: 16.5em; /* fallback */
/* width: 30ch; # of chars */
margin: 2em 1em;
white-space: nowrap;
overflow: hidden;
animation: typing 20s steps(30, end), /* # of steps = # of chars */
blink-caret .5s step-end infinite alternate;
}
</style>
</head>
<body>
<h1>Typing animation by Lea Verou.</h1>
</body>
</html>
+
关注“网页设计自学平台”订阅号回复以下|关键字|
|dw教程|js教程|淘宝案例|软件下载|搜狐案例|网站模板
戳“阅读原文”入群免费领取前端开发教程!