-
ocesim ahora es un usuario registrado hace 7 años, 8 meses
Pregúntale a DeepSeek
Como ChatGPT, pero GRATIX
// Función para abrir DeepSeek en una ventana emergente
function openDeepSeekWindow(event) {
event.preventDefault(); // Evita el comportamiento por defecto del enlace
const width = 800; // Ancho de la ventana
const height = 600; // Alto de la ventana
const left = (window.screen.width - width) / 2; // Centrar horizontalmente
const top = (window.screen.height - height) / 2; // Centrar verticalmente
// Abrir la ventana emergente
const newWindow = window.open(
"https://chat.deepseek.com",
"DeepSeekWindow",
`width=${width},height=${height},left=${left},top=${top},resizable=yes,scrollbars=yes`
);
// Verificar si la ventana se abrió correctamente
if (!newWindow || newWindow.closed || typeof newWindow.closed === "undefined") {
alert("¡El bloqueador de ventanas emergentes está activado! Por favor, permite ventanas emergentes para este sitio.");
}
}
function openDeepSeekWindow(event) {
event.preventDefault();
const button = event.currentTarget;
const spinner = button.querySelector(".spinner");
// Muestra el spinner y deshabilita el botón
spinner.classList.remove("hidden");
button.style.pointerEvents = "none";
// Abre la ventana emergente después de un pequeño retraso
setTimeout(() => {
const width = 800;
const height = 600;
const left = (window.screen.width - width) / 2;
const top = (window.screen.height - height) / 2;
window.open(
"https://chat.deepseek.com",
"DeepSeekWindow",
`width=${width},height=${height},left=${left},top=${top},resizable=yes,scrollbars=yes`
);
// Oculta el spinner y habilita el botón
spinner.classList.add("hidden");
button.style.pointerEvents = "auto";
}, 500);
}
|