
242.0K
ARCreate EPIC Text Animation in 60 Seconds – Bounce + Scale + Rotation! in After Effects
Want your text to really grab attention?
In this quick tutorial, I’ll show you how to create a dynamic text reveal using bounce, scale, rotation, and tracking – all in under 60 seconds!
duration = 0.15; // how long the main transition lasts
frequency = 2; // how many times it bounces
damping = 9; // how quickly the bounce fades
letterDelay = textIndex * thisComp.frameDuration;
localTime = time - (inPoint + letterDelay);
startValue = [100, 100, 100];
endValue = [0, 0, 0];
if (localTime < duration) {
linear(localTime, 0, duration, startValue, endValue);
} else {
delta = (endValue - startValue) / duration;
omega = frequency * Math.PI * 2;
decayFactor = Math.exp(-damping * (localTime - duration));
bounce = Math.sin((localTime - duration) * omega) * decayFactor;
endValue + delta * bounce / omega;
}
#aressae #textanimation #motion #titleanimation #aftereffectstutorial #adobe
@aress_ae










