Advertisement
ikai2

CSS Typing Effect

Sep 15th, 2022
1,065
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.35 KB | None | 0 0
  1. .typing-demo {
  2.   width: 22ch;
  3.   animation: typing 2s steps(22), blink .5s step-end infinite alternate;
  4.   white-space: nowrap;
  5.   overflow: hidden;
  6.   border-right: 3px solid;
  7.   font-family: monospace;
  8.   font-size: 2em;
  9. }
  10.  
  11. @keyframes typing {
  12.   from {
  13.     width: 0
  14.   }
  15. }
  16.    
  17. @keyframes blink {
  18.   50% {
  19.     border-color: transparent
  20.   }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement