js UserScroll

PHOTO EMBED

Tue Oct 03 2023 16:49:01 GMT+0000 (Coordinated Universal Time)

Saved by @destinyChuck #javascript

function userScroll() {
  const navbar = document.querySelector('.navbar');

  window.addEventListener('scroll', () => {
    if (window.scrollY > 50) {
      navbar.classList.add('bg-dark');
    } else {
      navbar.classList.remove('bg-dark');
    }
  });
}

document.addEventListener('DOMContentLoaded', userScroll);
content_copyCOPY

Adds background to navbar when scrolling