Dragonball Online Goku Hand
본문 바로가기
Effect(자바스크립트 활용)/Parallax Effect 패럴럭스 이펙트

"패럴랙스 이펙트 07" : 리빌 효과

by 별의 코비 2022. 10. 6.
728x90

🔮 패럴랙스 이펙트 - 리빌 효과

📌 이번 이펙트는 이미지와 텍스트 등을 점진적으로 나타나게 하는 이펙트입니다.

➰ HTML

애니메이션 방향
∙reveal : 왼쪽에서 오른쪽으로
∙reveal-RTL : Right To Left
∙reveal-TTB : Top To Bottom
∙reveal-BTT : Bottom To Top

코드 보기
<main id="parallax__cont">
    <div id="contents">
        <section id="section1" class="content__item">
            <span class="content__item__num">01</span>
            <h2 class="content__item__title">section1</h2>
            <figure class="content__item__imgWrap reveal">
                <div class="content__item__img"></div>
            </figure>
            <!-- 그냥 reveal을 붙이면 아까 reveal>div했던 것처럼 해야 붙는데 따로 박스가 없어서 안됨 그래서 span을 줘야함 -->
            <p class="content__item__desc split reveal">오늘 할 수 있는 일에 전력을 다하라. 그러면 내일에는 한걸음 더 진보한다.</p>
        </section>
        <!-- //section1 -->
        <section id="section2" class="content__item">
            <span class="content__item__num">02</span>
            <h2 class="content__item__title">section2</h2>
            <!-- reveal-RTL옵션으로 공통요소 만들기 자동으로 작동되도록! -->
            <figure class="content__item__imgWrap reveal reveal-RTL">
                <div class="content__item__img"></div>
            </figure>
            <p class="content__item__desc split reveal reveal-RTL" data-delay="500">게으르지 않음은 영원한 삶의 집이요, 게으름은 죽음의 집이다.</p>
        </section>
        <!-- //section2-->
        <section id="section3" class="content__item">
            <span class="content__item__num">03</span>
            <h2 class="content__item__title">section3</h2>
            <figure class="content__item__imgWrap reveal reveal-TTB">
                <div class="content__item__img"></div>
            </figure>
            <p class="content__item__desc split reveal reveal-TTB">우리는 행복하기 때문에 웃는게 아니라, 웃기 때문에 행복하다.</p>
        </section>
        <!-- //section3 -->
        <section id="section4" class="content__item">
            <span class="content__item__num">04</span>
            <h2 class="content__item__title split">section4</h2>
            <figure class="content__item__imgWrap reveal reveal-BTT">
                <div class="content__item__img"></div>
            </figure>
            <p class="content__item__desc reveal reveal-BTT">인생은 가까이서 보면 비극, 멀리서 보면 희극이다.</p>
        </section>
        <!-- //section4 -->
        <section id="section5" class="content__item">
            <span class="content__item__num">05</span>
            <h2 class="content__item__title">section5</h2>
            <figure class="content__item__imgWrap reveal reveal-TWO">
                <div class="content__item__img"></div>
            </figure>
            <p class="content__item__desc reveal reveal-TWO">승자는 시간을 관리하며 살고 패자는 시간에 끌려 산다.</p>
        </section>
        <!-- //section5 -->
        <section id="section6" class="content__item">
            <span class="content__item__num">06</span>
            <h2 class="content__item__title">section6</h2>
            <figure class="content__item__imgWrap reveal reveal-TWO reveal-RTL">
                <div class="content__item__img"></div>
            </figure>
            <p class="content__item__desc reveal-TWO reveal-RTL">아무것도 하지 않으면 아무 일도 일어나지 않는다.</p>
        </section>
        <!-- //section6 -->
        <section id="section7" class="content__item">
            <span class="content__item__num">07</span>
            <h2 class="content__item__title">section7</h2>
            <figure class="content__item__imgWrap reveal reveal-TWO reveal-TTB">
                <div class="content__item__img"></div>
            </figure>
            <p class="content__item__desc reveal reveal-TWO reveal-TTB">일단 시작해라. 나중에 완벽해지면 된다.</p>
        </section>
        <!-- //section7 -->
        <section id="section8" class="content__item">
            <span class="content__item__num">08</span>
            <h2 class="content__item__title">section8</h2>
            <figure class="content__item__imgWrap reveal reveal-TWO reveal-BTT">
                <div class="content__item__img"></div>
            </figure>
            <p class="content__item__desc reveal reveal-TWO reveal-BTT">모든 이의 마음을 얻으려고 계산된 글은 그 누구의 마음도 얻지 못한다.</p>
        </section>
        <!-- //section8 -->
        <section id="section9" class="content__item">
            <span class="content__item__num">09</span>
            <h2 class="content__item__title">section9</h2>
            <figure class="content__item__imgWrap reveal reveal-TWO reveal-RTL">
                <div class="content__item__img"></div>
            </figure>
            <p class="content__item__desc reveal reveal-TWO reveal-BTT">우리 자신에게 실패를 허락하는 것이 성공을 허락하는 것이다.</p>
        </section>
        <!-- //section9 -->
    </div>
</main>
<!-- //main -->
<aside id="parallax__info">
    <div class="scroll">scrollTop : <span>0</span>px</div>
</aside>

➰ CSS

html틀을 구성해 준 다음, 그에 맞는 스타일을 줍니다. 주석을 참고해주세요!

코드 보기
/* parallax__nav */
#parallax__nav {
    position: fixed;
    right: 20px;
    top: -200px;
    z-index: 2000;
    background-color: rgba(0,0,0,0.4);
    padding: 20px 30px;
    border-radius: 50px;
    transition: top .4s ease;
}
#parallax__nav li {
    display: inline;
    margin: 0 5px;
}
#parallax__nav li a{
    /* background-color: #ffee00; */
    display: inline-block;
    height: 30px;
    padding: 5px 20px;
    text-align: center;
    line-height: 30px;
}
#parallax__nav li.active a {
    background: #fff;
    color: #000;
    border-radius: 20px;
    box-sizing: content-box;
}
#parallax__cont {
    max-width: 1600px;
    width: 98%;
    margin: 0 auto;
    /* background-color: rgba(255,255,255,0.1); */
}
.content__item {
    width: 1000px;
    max-width: 70vw;
    margin: 30vw auto;
    /* background-color: rgba(255,255,255,0.3); */
    text-align: left;
    margin-right: 0;
    position: relative;
    padding-top: 7vw;
}
.content__item:nth-child(2n){
    /* 2n even 짝수 / 곱하기도 쓰기 가능 */
    margin-left: 0;
    text-align: right;
}
.content__item__num {
    font-size: 35vw;
    font-family: 'Lato';
    font-weight: 100;
    position: absolute;
    left: -5vw;
    top: -16vw;
    opacity: 0.07;
    z-index: -2;
}
.content__item:nth-child(even) .content__item__num {
    /* left초기화 기준점 right로 바뀜*/
    left: auto;
    right: -5vw;
}
.content__item__title {
    font-weight: 400;
    text-transform: capitalize;
}
.content__item__imgWrap {
    width: 100%;
    /* 이미지 영역 만들어주기 패딩으로 */
    padding-bottom: 56.25%;
    position: relative;
    /* 사진 넘치는 거 가리기 */
    overflow: hidden;
    z-index: -1;
}
.content__item__img {
    position: absolute;
    background-image: url(../assets/img/effect_bg05.jpg);
    background-repeat: no-repeat;
    background-position: center center;
     /* 사진안짤리게 */
    background-size: cover;
    width: 110%;
    height: 110%;
    left: -5%;
    top: -5%;
    /* 흑백효과 */
    filter: saturate(0%);
    /* transition: all 1s; */
}
.content__item:nth-child(1) .content__item__img {
    background-image: url(../assets/img/effect_bg01.jpg);
}
.content__item:nth-child(2) .content__item__img {
    background-image: url(../assets/img/effect_bg02.jpg);
}
.content__item:nth-child(3) .content__item__img {
    background-image: url(../assets/img/effect_bg03.jpg);
}
.content__item:nth-child(4) .content__item__img {
    background-image: url(../assets/img/effect_bg04.jpg);
}
.content__item:nth-child(5) .content__item__img {
    background-image: url(../assets/img/effect_bg05.jpg);
}
.content__item:nth-child(6) .content__item__img {
    background-image: url(../assets/img/effect_bg06.jpg);
}
.content__item:nth-child(7) .content__item__img {
    background-image: url(../assets/img/effect_bg07.jpg);
}
.content__item:nth-child(8) .content__item__img {
    background-image: url(../assets/img/effect_bg08.jpg);
}
.content__item:nth-child(9) .content__item__img {
    background-image: url(../assets/img/effect_bg09.jpg);
}
.content__item__desc {
    font-size: 4vw;
    line-height: 1.4;
    margin-top: -5vw;
    margin-left: -4vw;
    word-break: keep-all;
}

/* 홀수는 odd랍니다. */
.content__item:nth-child(even) .content__item__desc {
    margin-left: auto;
    margin-right: -4vw;
}
@media(max-width:800px){
    #parallax__cont {
        margin-top: 70vw;
    }
    #parallax__nav {
        padding: 10px;
        right: auto;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        border-radius: 5px;
        background-color: rgb(0,0,0,0.8);
    }
    #parallax__nav li {
        display: block;
        margin: 5px;
    }
    #parallax__nav li a{
        font-size: 14px;
        padding: 5px;
        border-radius: 5px;
        height: auto;
        line-height: 1;
    }
    #parallax__nav li.active a {
        border-radius: 5px;
    }
}
#parallax__info {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 2000;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
}
#parallax__info li .scrollTop{
    line-height: 1.4;
}

/* option */
.reveal > div,
.reveal > span {
    opacity: 0;
}
/* reveal에 show가 붙었을 때 */
/* linear : 애니메이션 효과가 처음부터 끝까지 일정한 속도로 진행 */
.reveal.show > div, 
.reveal.show > span {
    animation: opacity 1s linear forwards;
}
.reveal {
    position: relative;
}
/* 흰색 바탕 */
.reveal::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #fff;
    z-index: 1;
}
.reveal.reveal-TWO::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    z-index: 1;
    background: skyblue;
}
/* 1개 */
.reveal.show::before {
    animation: reveal 1s;
}
.reveal.reveal-RTL.show::before {
    animation: reveal-RTL 1s;
}
.reveal.reveal-TTB.show::before {
    animation: reveal-TTB 1s;
}
.reveal.reveal-BTT.show::before {
    animation: reveal-BTT 1s;
}
/* 2개 */
.reveal.show::after {
    animation: reveal 1s 0.3s
}
.reveal.reveal-RTL.show::after {
    animation: reveal-RTL 1s 0.3s
}
.reveal.reveal-TTB.show::after {
    animation: reveal-TTB 1s 0.3s
}
.reveal.reveal-BTT.show::after {
    animation: reveal-BTT 1s 0.3s
}
.content__item__num,
.content__item__title {
    display: none;
}
@keyframes opacity {
    0% {opacity: 0;}
    60% {opacity: 0;}
    70% {opacity: 1;}
    100% {opacity: 1;}
}
/* 박스가 왼쪽에서 오른쪽으로 */
@keyframes reveal {
    0% {width: 0; left: 0}
    50% {width: 100%; left: 0}
    80% {width: 100%; left: 0}
    100% {width: 0; left: 100%}
}
/* reveal-RTL는 반대로 / left값을 초기화 시켜줘야 됨(left: auto;) 위에 기준점있기 때문에 */
@keyframes reveal-RTL {
    0% {width: 0; right: 0; left: auto;}
    50% {width: 100%; right: 0; left: auto;}
    80% {width: 100%; right: 0; left: auto;}
    100% {width: 0; right: 100%; left: auto;}
}
/* height값이 기준 */
@keyframes reveal-TTB {
    0% {width: 100%; height: 0; top: 0;}
    50% {width: 100%; height: 100%; top: 0;}
    80% {width: 100%; height: 100%; top: 0;}
    100% {width: 100%; height: 0; top: 100%;}
}
@keyframes reveal-BTT {
    0% {width: 100%; height: 0; bottom: 0; top: auto;}
    50% {width: 100%; height: 100%; bottom: 0; top: auto;}
    80% {width: 100%; height: 100%; bottom: 0; top: auto;}
    100% {width: 100%; height: 0; bottom: 100%; top: auto;}
}

➰ 자바스크립트 활용

주석을 참고해주세요!

코드 보기
const reveal = document.querySelectorAll(".reveal");

//reveal 클래스 자식에 글씨가 있다면, 가상으로 span태그를 만들어서 넣어주세요. 6번참고
reveal.forEach((e) => {
    //innerText로 텍스트가 있는 것만 뽑음
    let revealText = e.innerText;
    if (revealText) {
        e.innerHTML = "<span>" + revealText + "</span>";
    }
});

// console.log(splitWrapAll)

function scroll() {
    let scrollTop = window.scrollY;
    
    //reveal 여러개 선택할 수 있음
    //const reveal = document.querySelectorAll(".reveal");
    reveal.forEach((el) => {
        let revealOffset = el.offsetTop + el.parentElement.offsetTop;
        let revealDelay = el.dataset.delay;
        
        //첫번째 섹션보다 클 때 리빌 오프셋값을 구해야 함.
        //섹션의 오프셋값과 리빌의 오프셋값을 가져와야함 왜냐하면 섹션이 리빌 구역보다 더 크기 때문
    
        //중간정도에서 나타나게 (더 빨리 나타나게 하기 위함) : - window.innerHeight/2 //바로 나오게 하기 : - window.innerHeight
        // if(scrollTop > revealOffset - window.innerHeight){
        //     el.classList.add("show");
        // }
    
        if (scrollTop >= revealOffset - window.innerHeight) {
            if (revealDelay == undefined) {
                el.classList.add("show");
            } else {
                setTimeout(() => {
                    el.classList.add("show");
                }, revealDelay);
            }
        }
    });
    document.querySelector("#parallax__info .scroll span").innerText = Math.round(scrollTop);
    requestAnimationFrame(scroll);
}
scroll();

댓글