Ir al contenido
Instagram
Facebook
Youtube
Home
About
Contact
Home
About
Contact
Contáctanos
Plugins
Gutenberg Blocks
$9.00
Ultimate Elementor
$14.00
Starter Templates 3.0
$24.00
Gutenberg Blocks
$9.00
Ultimate Elementor
$14.00
Starter Templates 3.0
$24.00
Carrito de compra
Número de artículos en el carrito:
0
Tu carrito está vacío.
Total:
$0.00
Finalizar compra
let lastScroll = 0; window.addEventListener("scroll", () => { const body = document.body; const currentScroll = window.pageYOffset; if (currentScroll <= 0) { body.classList.remove("scrolling-up"); return; } if (currentScroll > lastScroll && !body.classList.contains("scrolling-down")) { body.classList.remove("scrolling-up"); body.classList.add("scrolling-down"); } else if (currentScroll < lastScroll && body.classList.contains("scrolling-down")) { body.classList.remove("scrolling-down"); body.classList.add("scrolling-up"); } lastScroll = currentScroll; });