xgqfrms™, xgqfrms® : xgqfrms's offical website of cnblogs! xgqfrms™, xgqfrms® : xgqfrms's offical website of GitHub!

Pure CSS Typewriter Animation Effect All In One

Pure CSS Typewriter Animation Effect All In One

/* pure CSS Animation Typewriter Effect */
.typewriter-effect {
  animation: auto-typing 4s steps(44) 1s 1 normal both running,
             blink-cursor 0.5s steps(44) infinite normal both running;
}

/* 字体盒子宽度动态变化 */
@keyframes auto-typing{
  from {
    width: 0;
  }
  to {
    width: 24em;
  }
}

/* cursor 透明度动态变化 */
@keyframes blink-cursor{
  from {
    border-right-color: rgba(255,255,255,.75);
  }
  to {
    border-right-color: transparent;
  }
}

live demo

refs



©xgqfrms 2012-2025

www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!

原创文章,版权所有©️xgqfrms, 禁止转载 🈲️,侵权必究⚠️!


posted @   xgqfrms  阅读(25)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· winform 绘制太阳,地球,月球 运作规律
· 超详细:普通电脑也行Windows部署deepseek R1训练数据并当服务器共享给他人
· 上周热点回顾(3.3-3.9)
· AI 智能体引爆开源社区「GitHub 热点速览」
· 写一个简单的SQL生成工具
历史上的今天:
2021-05-22 uni-app charts All In One
2020-05-22 Azure & FaaS in Action
2020-05-22 css & focus-within & pseudo class
2020-05-22 HTML5 & canvas fingerprinting
2019-05-22 vue & npm & components & plugins
2019-05-22 CSS3 Animation & linear-gradient & css3 var & @keyframes
2019-05-22 iOS effect & swiper delete components
点击右上角即可分享
微信分享提示