Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
/* Any JavaScript here will be loaded for all users on every page load. */
// Crear y agregar el botón flotante al cargar la página
document.addEventListener("DOMContentLoaded", function () {
const backToTopButton = document.createElement("div");
backToTopButton.id = "backToTop";
backToTopButton.textContent = "↑"; // Flecha hacia arriba
backToTopButton.onclick = scrollToTop;
document.body.appendChild(backToTopButton);
});
// Función para volver al inicio
function scrollToTop() {
window.scrollTo({
top: 0,
behavior: "smooth" // Desplazamiento suave
});
}
// Mostrar el botón al hacer scroll hacia abajo
window.addEventListener("scroll", function () {
const backToTopButton = document.getElementById("backToTop");
if (window.scrollY > 200) {
backToTopButton.classList.add("show");
} else {
backToTopButton.classList.remove("show");
}
});