-
Text Bounce out effect
Hi,
I use an expression to make my text bounce in, but I can’t figure out how to change the expression to make my text bounce out of the screen. Someone could help me with this?here is the expression I use:
delay = 0.03;
myDelay = delay*textIndex;
t = (time - inPoint) - myDelay;
if (t >= 3){
freq =3;
amplitude = 150;
decay = 8;
s = amplitude*Math.cos(freq*t*2*Math.PI)/Math.exp(decay*t);
[s,s]
}else{
value
}