Generation

generate functionSat, 26 Nov 2022

make sticky header

function stickyHeader() { window.onscroll = function() { const header = document.getElementById('header'); const sticky = header.offsetTop; if (window.pageYOffset > sticky) { header.classList.add('sticky'); header.classList.add('container'); } else { header.classList.remove('sticky'); header.classList.remove('container'); } }; }

TypeScript
Generate More

Questions about programming?Chat with your personal AI assistant