• 회원가입
  • 로그인
  • 구글아이디로 로그인

[css] CSS - FADE-IN TEXT - 페이드인 텍스트 (= 서서히 사라지는 이미지 + 서서히 나타나는 글자)

FADE-IN TEXT 예제

 

<style>

body {

    position: relative;

    height: 100vh;

    overflow: hidden;

}


.image {

    position: absolute;

    width: 100%;

    height: 100%;

    object-fit: cover;

    z-index: -1;

    transform: scale(1.8);

    animation: scaleImage 5s ease-out forwards;

}


.text {

    display: flex;

    justify-content: center;

    align-items: center;

    height: 100%;

    font-family: 'Roboto', Arial, sans-serif;

    font-size: calc(10px + 8vw);

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: 0.05em;

    white-space: nowrap;

    text-transform: uppercase;

    color: #fff;

    background-color: #000;

    mix-blend-mode: multiply;

    opacity: 0;

    animation: fadeInText 3s 2s ease-out forwards;

}


@keyframes scaleImage {

    100% {

        transform: scale(1);

    }

}


@keyframes fadeInText {

    100% {

        opacity: 1;

    }

}
</style>

 

<img src="https://source.unsplash.com/VW8MUbHyxCU/1920x1080" alt="" class="image">

<h1 class="text">Homzzang.com</h1>

 

결과보기

George W. Park

 


분류 제목
scroll CSS - scroll-padding-top 속성 -
scroll CSS - scroll-snap-align 속성 -
scroll CSS - scroll-snap-stop 속성 -
scroll CSS - scroll-snap-type 속성 -
scroll CSS - scrollbar-color 속성 - 스크롤바 색상 지정 (= scrollbar-color속성 =…
css CSS - tab-size 속성 - 탭크기(=탭너비) 지정 (= tab-size속성 = 탭사이즈속성)
text CSS - text-decoration-thickness 속성 - 텍스트라인 두께 지정 (= text-dec…
text CSS - text-emphasis-color 속성 - 텍스트 강조마크의 색상 지정 (= text-empha…
text CSS - text-emphasis-position 속성 - 텍스트 강조마크 위치 지정 (= text-emp…
text CSS - text-emphasis-style 속성 - 텍스트 강조마크 모양 지정 (= text-emphas…
text CSS - text-orientation 속성 - 블락방향 수직모드에서 문자방향 지정 (= 텍스트방향 지정 …
text CSS - text-underline-position 속성 - 텍스트 언더라인 위치 지정 (= text-un…
css CSS - user-select 속성 - 사용자가 요소의 텍스트를 선택 가능한지 여부 지정 (= user-s…
css CSS - widows 속성 - 페이지나 열의 상단에 남겨야 하는 최소 줄 수 지정 (= widows속성 =…
css CSS - 지그재그 톱날모양 물결무늬
25/25
목록
찾아주셔서 감사합니다. Since 2012