CoolFace
Apppublic

Neville03/add-scroll-effect-const-navbar-t-69xf8fkhkmx

sourceHugging Faceupdated 10mo agoView on Hugging Face
0likes
3 commits on main
7aaa0c210mo ago

create a backend that allows logins and passowrds to be stored securely while creating components to fill each part one could possibly navigate to

Neville03
472f9f510mo ago

`; // Add scroll effect const navbar = this.shadowRoot.querySelector('.navbar'); window.addEventListener('scroll', () => { if (window.scrollY > 50) { navbar.classList.add('navbar-scrolled'); } else { navbar.classList.remove('navbar-scrolled'); } }); } } customElements.define('custom-navbar', CustomNavbar); `; } } customElements.define('custom-footer', CustomFooter); this shows on my webpage fix it

Neville03
973d66510mo ago

initial commit

Neville03