HTML _CSS
Typing Effect
HiroDaegu
2022. 11. 6. 00:41
728x90
SMALL

<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TYPING EFFECT</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper">
<div class="typing-demo">This is Typing effect</div>
</div>
</body>
</html>
.wrapper {
height: 100vh;
display: grid;
place-items: center;
}
.typing-demo {
width: 21ch;
animation: typing 2s steps(22), blink .5s step-end infinite alternate;
white-space: nowrap;
overflow: hidden;
border-right: 3px solid;
font-family: monospace;
font-size: 2em;
}
@keyframes typing {
from {
width: 0;
}
}
@keyframes blink {
50% {
border-color: transparent;
}
}728x90
LIST