script.js 451 B

12345678910111213
  1. document.addEventListener('DOMContentLoaded', function () {
  2. const header = document.getElementById('main-header');
  3. const logo = document.getElementById('logo-img');
  4. const scrollThreshold = 100; // 滚动多少像素后开始缩小
  5. window.addEventListener('scroll', function () {
  6. if (window.scrollY > scrollThreshold) {
  7. header.classList.add('small-header');
  8. } else {
  9. header.classList.remove('small-header');
  10. }
  11. });
  12. });