main.ts 386 B

12345678910111213
  1. document.addEventListener('DOMContentLoaded', () => {
  2. const topBar = document.querySelector('.top-bar');
  3. if (topBar) {
  4. window.addEventListener('scroll', (e) => {
  5. if (window.scrollY === 0) {
  6. topBar.classList.remove('floating');
  7. } else {
  8. topBar.classList.add('floating');
  9. }
  10. });
  11. }
  12. }, false);