Created
May 6, 2025 23:08
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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