Typewriter Animation 2

Another code to make a typewriter effect
 avatar
messywebdev
plain_text
2 years ago
571 B
7
Indexable
{
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: none;
}

body {
  background-color: #8888ff;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

h1 {
  font-size: 40px;
  color: rebeccapurple;
  white-space: nowrap;
  overflow: hidden;
  animation: typewriter 5s steps(13) infinite alternate,
  blink 7s steps(13) infinite normal;
  border-right: 5px solid black;
}

@keyframes typewriter {
  from {width: 0%;}
  to {width: 100%;}
}

@keyframes blink {
  from {border-color: black;}
  to {border-color: transparent;}
}
Editor is loading...