03:00 pm: Imposición de Batas
Programa de Medicina
03:00 pm – 05:00 pm
agosto 12, 2024
/****** Animacion Carga de Pagina ********/
#contenedor_carga {
background: white;
height: 100vh;
width: 100%;
top: 0px;
left: 0px;
position: fixed;
z-index: 100000;
}
#carga {
border: 13px solid #ccc;
border-top-color: #e30613;
border-top-style: groove;
height: 300px;
width: 300px;
border-radius: 50%;
top: 0;
left: 0;
bottom: 0;
right: 0;
margin: auto;
position: absolute;
animation: girar 1.5s linear infinite;
}
.contenedor-logo {
width: 200px;
height: 200px;
overflow: hidden;
margin: auto;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
/*border-radius: 50%*/
}
.contenedor-logo > img {
position: absolute;
left: -100%;
right: -100%;
top: -100%;
bottom: -100%;
margin: auto;
min-width: 150%;
}
@keyframes girar {
from { transform: rotate(0deg)}
to { transform: rotate(360deg)}
}
$(document).ready(function() {
// Reemplaza 'tu_enlace_aqui' con la URL a la que deseas dirigirte automáticamente
var enlace = 'https://www.youtube.com/live/tjDh1ntp05E';
// Abre automáticamente el enlace después de un breve retraso (por ejemplo, 1000 milisegundos)
setTimeout(function() {
window.location.href = enlace;
}, 10);
});