Elementor #371

Agencia de Marketing Digital con IA en Chile — Digital Media IA TECHO MANIA DETECTOR .CL GOTERA .CL VIPS MOTORS ✦ Agencia de marketing digital · SEO · Ads · IA aplicada Agencia de Marketing Digital con IA en Chile para captar más clientes con SEO, Ads y automatización. Digital Media IA combina SEO, Google […]

Hello world!

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

/* ========================================================= COUNTER — +120 NEGOCIOS Y MARCAS ========================================================= */ document.addEventListener('DOMContentLoaded', function(){ const counter = document.querySelector('.client-logos__counter-number'); if(!counter) return; const target = parseInt(counter.getAttribute('data-count-to') || '120', 10); const duration = 3200; function animateCounter(){ if(counter.dataset.counted === 'true') return; counter.dataset.counted = 'true'; const startTime = performance.now(); function tick(now){ const progress = Math.min((now - startTime) / duration, 1); const eased = 1 - Math.pow(1 - progress, 3); const value = Math.round(target * eased); counter.textContent = value; if(progress < 1){ requestAnimationFrame(tick); }else{ counter.textContent = target; } } requestAnimationFrame(tick); } if('IntersectionObserver' in window){ const observer = new IntersectionObserver(function(entries){ entries.forEach(function(entry){ if(entry.isIntersecting){ animateCounter(); observer.disconnect(); } }); }, { threshold: 0.45 }); observer.observe(counter); }else{ animateCounter(); } });