Paper — scroll
Ink
Terra
// Mechanisme: foundation-theme-shift-on-scroll
import gsap from 'https://esm.sh/gsap@3.12.5';
// Pas toe op je eigen selector — geen stijlkeuzes hier.
if(window.matchMedia('(prefers-reduced-motion: reduce)').matches)return;
const io=new IntersectionObserver(entries=>entries.forEach(e=>{if(e.isIntersecting)document.documentElement.setAttribute('data-theme',e.target.dataset.theme);}),{threshold:0.5});
document.querySelectorAll('[data-theme]').forEach(s=>io.observe(s)); <!-- Skeleton: foundation-theme-shift-on-scroll --> <div class="demo-block"> <!-- DOM-structuur hier --> </div>
/* Styling: foundation-theme-shift-on-scroll */
:root {
--block-bg: ;
--block-fg: ;
--block-accent: ;
}