초짜코딩의 잡동사니

parallaxEffect04 - 나타나기 본문

Script Sample/parallax effect

parallaxEffect04 - 나타나기

초짜코딩 2022. 3. 11. 16:10

function scroll(){
    let scrollTop = window.scrollY || window.pageYOffset || document.documentElement.scrollTop
    document.querySelector(".scrollTop span").innerText =Math.round(scrollTop);

    // if(scrollTop> document.getElementById("section1").offsetTop){
    //     document.getElementById("section1").classList.add("show");
    // }
        document.querySelectorAll(".content__item").forEach((element, index) => {
        if(scrollTop > document.getElementById("section"+(index+1)+"").offsetTop - window.innerHeight/2){
            document.getElementById("section"+(index+1)+"").classList.add("show");
        }
    })
    requestAnimationFrame(scroll);
}
scroll();