JOIN OUR TEAM
Contact
Phone: 310-895-0208
E-Mail: info@mysecretsentinel.com
E-Mail: info@mysecretsentinel.com
// Animated Counters document.addEventListener("DOMContentLoaded", function() { const counters = document.querySelectorAll('#why-sentinel .counter'); counters.forEach(counter => { counter.innerText = '0'; const updateCounter = () => { const target = +counter.getAttribute('data-target'); const current = +counter.innerText; const increment = target / 200; if(current < target){ counter.innerText = `${Math.ceil(current + increment)}`; setTimeout(updateCounter, 20); } else { counter.innerText = target; } }; updateCounter(); }); });