Countdown After Effects



Countdown in After Effects fundamental. Simple theory and practice

  1. Countdown After Effects
  2. Stopwatch After Effects
  3. Countdown Timer After Effects Template

Nt Productions shows how to create a countdown script for Ae from start to finish. NT Production’s Nathan Lovell latest tutorial is one that takes on creating a countdown script for Adobe After Effects from start to finish. Lovell creates the script live from scratch, starting with nothing pre-planned. In this After Effects tutorial, we’ll dive into using a single text field and create a couple of VERY simple timers to kick things off and then we’ll write a bit more complex code to create a much more realistic and functional countdown timer that you have complete control over. LCD Countdown After Effects Template. By zedee in Technology $15 (5) 216 Sales. By lovetower in Light $18. By tohaua in Countdown $18 (3) 207 Sales. New Year Countdown and Christmas Card 2021. By BlackSquare in 3d Object. 1:05, 0:34 $39 (4) 203 Sales. Luxury Countdown 4K. Explore 161 results for countdown in the Pond5 AE Templates collection. After Effects / countdown. Countdown timer countdown clock countdown film leader top ten glitch credits clock counter. Created with Sketch. Best match Popular Newest Price: Low to High Price: High to Low Duration: Short to Long Duration: Long to Short.

Countdown

Countdown in After Effects fundamental with simple theory and practices. After reading this article you will be more than capable to write your own simple countdown expressions.

A countdown is an act of counting numerals in reverse order to zero. In other words, is the number of seconds, minutes, or just frames that remain before something. Although, despite the theory, we can use it vice versa. Instead of going down, we can go up.

The way to create a countdown in After Effects is through simple expressions. Let’s see how we can create some variations of that.

Countdown

We need two things in order to dive in and create all the variations of our countdown concepts.

  • composition
  • text layer

Note: When you create the text layer, make sure you don’t write anything. Just leave it as it is. Also, set the frame rate for the new composition at 30 FPS.

One last thing. You could also use slider control in null object to control a countdown. Basically, you hook up the slider control to drive the countdown and then you just animate the slider control. You can find out more on How to make a simple count number.

Content of this article:

  • The most basic countdown concept
  • Countdown from specific number
  • Started from a specific number and going up
  • Countdown at a different speed
  • Countdown by ten
  • Counting with decimal points

The most basic countdown concept:

The most basic concept of countdown would be to just countdown negatively to infinity, right. Well at least as long as you have set up your timeline in After Effects. In my case, I have set up my timeline to 5 seconds. So any countdown will be happening in that time range, and repeat itself over and over again.

Effects

Let’s try this one.

Expand your text layer until you see the source text attribute. Alt + left click on the stop-watch icon to go into expression mode. Type: -time in the expression section. Play the animation.

As you can see, even though our animation is counting down from 0 to -2, something straight happening. There are decimals points. The way to fix it is through a function you have to add in the expression code. The function is Math.floor. So our new expression line of code will be:

Replace the expression line in After Effects for your text layer and once again play the animation.

Now the animation plays as we expected, right!

Note: For reverse effect, to go up, just remove the minus symbol. So, your expression code can be:

Countdown from specific number:

Let’s say for example we want to countdown in After Effects from 3 to zero. Just place the started number in front the minus time.

Started from a specific number and going up:

Let’s say you want to start from 100 and going up. You have to add your number and then adding the “+” symbol following by time:

Countdown at a different speed:

The speed of all of the above countdown variations was depended on the frame rate we set up in the beginner for our new composition, which was 30 FPS. But what if we wanted for our countdown in After Effects to go faster or slower? What if we wanted for example our countdown to be 2 times faster.

Countdown After Effects

It’s quite simple, to be honest.

  • for faster time speed: Add the “*” symbol after the time parameter
  • for slower time speed: Add the “/” speed after the time parameter
Countdown After Effects

It’s make sense, right?

Countdown two times faster:

Lets’ say we want to countdown to infinite two times faster. In three seconds it will be -6.

If we want to countdown to infinite two times slower, so in three seconds it will be -1.5 approximately, we have to replace the “*” symbol with “/”

Countdown from specific number to 0, in specific seconds:

Let’s say we want to countdown from 60 to 0 in 3 seconds. Our expression code will be:

Countdown by ten:

In all above variations we countdown one by one. What if we want to countdown by ten! The way to do that is to multiply all the expression line by then number you want (10).

Countdown After Effects

Our new expression code in After Effects for the our text layer will be:

Likewise, if you want your countdown to be happen by 20, or by 100, etc, your new expression code would be accordingly:

  • Math.floor(-time) *20
  • Math.floor(-time) *100

Countdown with decimal points:

Stopwatch After Effects

Now to have a countdown with decimal points you can use the previous expression code expect to replace the “*” symbol with “/” this time. So the expression code will be:

Countdown Timer After Effects Template

If you need more zeros in your countdown, just divide with a bigger number.