counter-number
), and set its default value to 0
.IntersectionObserver
.data-target
attribute on .counter-number
elements in Webflow to define the final number.To combine a JavaScript number counter animation with a scroll animation in Webflow, you need to use Webflow interactions and custom JavaScript. The counter should only animate when the section comes into view. Follow these steps:
counter-number
) so it can be targeted with JavaScript.0
.tag, then add the script below:
<script>document.addEventListener("DOMContentLoaded", function() { function startCounter(element, target, duration) { let start = 0; let increment = target / (duration / 16); let interval = setInterval(function() { start += increment; if (start >= target) { clearInterval(interval); element.innerText = target; } else { element.innerText = Math.floor(start); } }, 16); } function handleIntersection(entries, observer) { entries.forEach(entry => { if (entry.isIntersecting) { let counterElement = entry.target; let targetNumber = parseInt(counterElement.getAttribute("data-target")); startCounter(counterElement, targetNumber, 2000); observer.unobserve(counterElement); } }); } let observerOptions = { threshold: 0.5 }; let observer = new IntersectionObserver(handleIntersection, observerOptions); document.querySelectorAll(".counter-number").forEach(counter => { observer.observe(counter); });});</script>
.counter-number
element, add a custom attribute:data-target
1000
).These steps ensure that the number counter animation only starts when the section comes into view. Webflow interactions handle scrolling effects, while JavaScript manages the number animation using the Intersection Observer API.