Animated Number Counter With Commas in After Effects | Tutorial

preview_player
Показать описание
How to create a number counter in Adobe After Effects that can count up or count down with commas for separation and this simple expression can make the text layer turn into a number counter with any font using Adobe After Effects. Creating a working number counter in Adobe After Effects is really simple and you can smoothly make it count up or count down using a slider effect with an expression that will make it count up or down and add commas for when it reaches thousands.

〓 GET ADOBE APPS ▾
--- --- --- ---
--- --- --- ---

〓 PLAYLISTS ▾
---
---

〓 LINKS ▾
---
---
#tutorial
Рекомендации по теме
Комментарии
Автор



*Expression* ⬇


num = effect("Slider
function addCommas(x) {
return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ", ");
}
addCommas(num);

VerticDesigns