250x250
Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | |||||
| 3 | 4 | 5 | 6 | 7 | 8 | 9 |
| 10 | 11 | 12 | 13 | 14 | 15 | 16 |
| 17 | 18 | 19 | 20 | 21 | 22 | 23 |
| 24 | 25 | 26 | 27 | 28 | 29 | 30 |
| 31 |
Tags
- image
- front-end
- 풀스택
- button
- 개발자
- SWIFT
- php
- IOS
- hover
- jQuery
- css3
- 프론트엔드
- ipad
- CSS
- keyframes
- iOS 개발자
- html5
- react
- 애니메이션
- javascript
- HTML
- Animation
- 백엔드
- 비전공 개발자
- 자바스크립트
- xcode
- iPhone
- effect
- 비전공자
- MAC
Archives
- Today
- Total
비전공자 개발일기
Typing Effect 본문
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
'HTML _CSS' 카테고리의 다른 글
| Main Page in WEB (0) | 2022.11.10 |
|---|---|
| Filter Gallery (0) | 2022.11.07 |
| Circle Scroll (0) | 2022.11.05 |
| Hidden Search Bar (0) | 2022.11.02 |
| Halloween Banner (0) | 2022.11.01 |