Skip to content

Instantly share code, notes, and snippets.

@fmagrosoto
Created May 6, 2025 23:08
Show Gist options
  • Save fmagrosoto/a17aaf059e18dd95417493af36634968 to your computer and use it in GitHub Desktop.
Save fmagrosoto/a17aaf059e18dd95417493af36634968 to your computer and use it in GitHub Desktop.
Script para que aparezca un elemento cuando otro elemento llegue al borde de la página
window.addEventListener("scroll", function () {
let header = document.getElementById("headerDesktop");
let menu = document.getElementById("menuFixed");
if (header.getBoundingClientRect().top <= 0) {
menu.style.top = "0";
} else {
menu.style.top = "-100px";
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment