码迷,mamicode.com
首页 > Web开发 > 详细

CSS内嵌样式实现打字效果

时间:2018-10-05 15:05:18      阅读:248      评论:0      收藏:0      [点我收藏+]

标签:step   ram   border   ack   tran   margin   space   color   css   

<style>

 *{margin:0;padding:0;}

 @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 10s steps(20, end), /* # of steps = # of chars */

 blink-caret .4s step-end infinite alternate;

 }

 </style>

<h1>百花居,专注鲜花网络预定9年!!</h1>

CSS内嵌样式实现打字效果

标签:step   ram   border   ack   tran   margin   space   color   css   

原文地址:https://www.cnblogs.com/cddaishi/p/9744703.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!