I'm

Developer, Designer, Photographer

GET IN TOUCH

  • Buk-gu, Busan, Republic of Korea
  • ungdoli0916@naver.com
  • Kakao ID : Ungdoli
Your message has been sent. Thank you!
(즐거웅코드) CSS 한 글자씩 물결치는 텍스트 파도타기 애니메이션

· 즐거'웅' 코드 (Source)/HTML & CSS & JAVASCRIPT
2021. 9. 25. 20:36

반응형

[즐거'웅'코드] 목차

  1. 예제 소스
  2. 구현 예시
예제 소스
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
32
33
34
35
36
<style>
    @keyframes anime_textup { 0% { top: 0; } 20% { top: -0.2rem; } 40% { top: 0 } 60% { top: 0 } 80% { top: 0 } 100% { top: 0 } }
 
    .test_obj span {
        position: relative;
        animation: anime_textup 1.5s infinite;
    }
 
    .test_obj span:nth-of-type(1) {
        animation-delay: .1s;
    }
 
    .test_obj span:nth-of-type(2) {
        animation-delay: .2s;
    }
 
    .test_obj span:nth-of-type(3) {
        animation-delay: .3s;
    }
 
    .test_obj span:nth-of-type(4) {
        animation-delay: .4s;
    }
 
    .test_obj span:nth-of-type(5) {
        animation-delay: .5s;
    }
</style>
 
<div class="test_obj">
    <span></span>
    <span></span>
    <span></span>
    <span></span>
    <span></span>
</div>
구현 예시
반응형