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

[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

 

방문 감사합니다. (즐겨찾기 등록: Ctrl + D)

분류 제목
border CSS - border-block-end-style 속성 - 블락방향 끝테두리 모양 지정 (= border-…
border CSS - border-block-end-width 속성 - 블락방향 끝테두리 너비(=두께) 지정 (= bo…
border CSS - border-block-start 속성 - 블락방향 시작테두리 스타일 일괄 지정 (= border…
border CSS - border-block-start-color 속성 -
border CSS - border-block-start-style 속성 - 블락방향 시작테두리 모양 지정 (= bord…
border CSS - border-block-start-width 속성 -
border CSS - border-block-style 속성 - 블락방향 테두리 모양 지정 (= border-block…
border CSS - border-block-width 속성 -
border CSS - border-end-end-radius 속성 -
border CSS - border-end-start-radius 속성 -
border CSS - border-inline 속성 -
border CSS - border-inline-color 속성 -
border CSS - border-inline-end 속성 -
border CSS - border-inline-end-color 속성 -
border CSS - border-inline-end-style 속성 -
border CSS - border-inline-end-width 속성 -
border CSS - border-inline-start 속성 -
border CSS - border-inline-start-color 속성 -
border CSS - border-inline-start-style 속성 -
border CSS - border-inline-start-width 속성 -
19/25
목록
찾아주셔서 감사합니다. Since 2012