top of page

Number Count Up Effect with Velo

Updated: Dec 30, 2024



Velo Code:


let startNum = 3200000;
let endNum = 3384000;
const duration = 3; // 1000 milliseconds


$w.onReady(function () {
    setInterval(() => {
        countUp();
    }, duration);
});

function countUp() {
    if (startNum <= endNum) {
        $w('#numberText').text = startNum.toLocaleString();
        startNum += 100;
    }
}

Enjoy!

Scene 02 (0-00-00-26).jpg

elevate your client projects?

Transform Your Projects with the Ultimate 2024-2025 Wix Studio Template Bundle!

Group 8.png
bottom of page