Stretch Text, Liquid Melting Text in After Effects | AE CC 2021

Опубликовано: 24 Февраль 2025
на канале: Gina Design
299
like

Tạo chữ co giãn(Stretch Text), chữ chảy lỏng(Liquid Melting Text)
Effect sử dụng:
CC Scale Wipe
Set Channels
Liquify
Timecode:
0:00 Intro
0:22 Stretch Text
6:15 Melting Text
11:46 Liquify Text
-------------------------------------------------------------------------------
BONUS: Ghost text(Intro)
Effect: Turbulent Displace, Fast Box Blur, Drop Shadow, Glow
Expression: // amount text
freq = 2;
decay = 4;
duration = 0.20;
retard = textIndex*thisComp.frameDuration*2;
t = time - (inPoint + retard);
startVal = [100,100,100];
endVal = [0,0,0];
if (t ‹ duration){
linear(t,0,duration,startVal,endVal);
}else{
amp = (endVal - startVal)/duration;
w = freq*Math.PI*2;
endVal + amp*(Math.sin((t-duration)*w)/Math.exp(decay*(t-duration))/w);}