banner script
All checks were successful
Deploy / Deploy to Production (push) Successful in 11s

This commit is contained in:
Julie Blanc 2026-01-06 16:15:49 +01:00
parent dc223ae1b8
commit ea648498e2
10 changed files with 166 additions and 16 deletions

View file

@ -1,6 +1,8 @@
import { headerToggle, headerScrollVisibility } from './header.js';
import { copyLink } from './share.js';
import { btnSticky } from './mobile-sticky.js';
import { bannerStickyMobile } from './banner-sticky-mobile.js';
import { bannerStickyDesktop } from './banner-sticky-desktop.js';
import { themeToggle } from './themeToggle.js';
const responsiveMedium = 1080;
const responsiveSmall = 768;
@ -10,5 +12,7 @@ window.onload = async function () {
headerToggle();
headerScrollVisibility();
copyLink();
btnSticky(responsiveSmall);
themeToggle();
bannerStickyMobile(responsiveSmall);
bannerStickyDesktop(responsiveSmall);
}