多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
[TOC] ## 示例 ``` <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; /* 字符数*/ 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> <h1>Typing animation by Lea Verou.</h1> ```