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. 26. 08:59

반응형

[즐거'웅'코드] 목차

  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
37
38
39
40
41
42
43
<style>
    @keyframes typo_animation { 0% { left: 0; width: 0; } 50% { width: 100%; } to { right: 0; width: 0; } }
 
    #test {
        position: relative;
        display: inline-block;
    }
 
    #test:before, #test:after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        display: inline-block;
    }
 
    #test:before {
        width: 100%;
        background: #ffffff;
    }
 
    #test:after {
        background: #dddddd;
    }
 
    #test.active:before {
        right: 0;
        width: 0;
        transition: width 1.1s ease-in-out;
    }
 
    #test.active:after {
        animation: typo_animation 1s ease-in-out;
    }
</style>
 
<div id="test">테스트</div>
 
<script>
    window.onload = function () {
        document.getElementById('test').classList.add("active");
    }
</script>
구현 예시
반응형