Ga naar de inhoud
jQuery(window).on('elementor/popup/show', function (event, id) {
const popup = document.querySelector(
`.elementor-popup-modal[data-id="${id}"] .dialog-widget-content`
);
if (!popup) return;
gsap.to(popup, {
opacity: 1,
y: 0,
scale: 1,
duration: 1.1,
ease: 'power3.out'
});
});
jQuery(window).on('elementor/popup/hide', function (event, id) {
const popup = document.querySelector(
`.elementor-popup-modal[data-id="${id}"] .dialog-widget-content`
);
if (!popup) return;
gsap.to(popup, {
opacity: 0,
y: 40,
scale: 0.98,
duration: 0.6,
ease: 'power2.in'
});
});