$w.onReady(function () {}); let startNum = 0; let endNum = 1000; const duration = 300; $w.onReady(function () { setInterval(() => { countUp(); }, duration); }); function countUp() { if (startNum <= endNum) { $w('#StartNumber').text = startNum.toString(); startNum++; } }
top of page

Weekly Assignments

I'm a paragraph. Click here to add your own text and edit me. I’m a great place for you to tell a story and let your users know a little more about you.

No available programs
bottom of page