Notice
Recent Posts
Recent Comments
Link
목록Script Sample/parallax effect (7)
초짜코딩의 잡동사니

document.querySelectorAll("#parallax__nav li a").forEach(li => { li.addEventListener("click", (e)=>{ e.preventDefault(); document.querySelector(li.getAttribute("href")).scrollIntoView({ behavior: "smooth" }) }) }) window.addEventListener("scroll", () =>{ let scrollTop = window.pageYOffset || document.documentElement.scrollTop || window.scrollY; // for(let i=1; i= document.getElementById("section..
Script Sample/parallax effect
2022. 3. 11. 16:02