Te han pedido hacer un evento digital en tu empresa, institución o negocio por Zoom (y tiene que ser un todo éxito). De acuerdo, entonces ¿qué hacer? ¿Cómo estructurarlo? ¿Cuál puede ser el mejor programa? ¿Qué suelen hacer las empresas con sus eventos online? Si te estás haciendo estas preguntas, este post te …
Escucha este artículo en El Podcast de Zoom Una de las mayores dificultades a la hora de realizar un evento por Zoom no es de tipo técnico, sino emocional: la carga de estrés. Personas, técnicamente muy capaces, pueden paralizarse o llegar hasta las lágrimas por la presión que genera realizar un evento corporativo por …
This website uses cookies to improve your experience while you navigate through the website. Out of these cookies, the cookies that are categorized as necessary are stored on your browser as they are as essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may have an effect on your browsing experience.
Necessary cookies are absolutely essential for the website to function properly. This category only includes cookies that ensures basic functionalities and security features of the website. These cookies do not store any personal information.
// Añadir/quitar clase según scroll, solo en la home
(function() {
if (!document.body.classList.contains('home')) return;
var header = document.querySelector('#masthead, .site-header, #ast-fixed-header');
function updateHeader() {
if (window.scrollY < 80) {
header.classList.add('header-not-scrolled');
} else {
header.classList.remove('header-not-scrolled');
}
}
updateHeader();
window.addEventListener('scroll', updateHeader, { passive: true });
})();