CoolFace
Apppublic

Samvickid/pubmed-hr

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
script.js10 linesDownload Raw Back to static
1// PubMed HR — JavaScript2document.addEventListener('DOMContentLoaded', function() {3    const header = document.getElementById('header');4    if (header) {5        window.addEventListener('scroll', function() {6            header.classList.toggle('scrolled', window.scrollY > 50);7        });8    }9});10