CoolFace
Apppublic

SADSADSADASD/aws

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
script.js10 linesDownload Raw Back to root
1// 页面滚动时导航栏添加阴影2window.addEventListener('scroll', function() {3    const header = document.querySelector('header');4    if (window.scrollY > 0) {5        header.classList.add('shadow');6    } else {7        header.classList.remove('shadow');8    }9});10