-
Sliding letters
Hi eveyone,
please have a look at the very beginning of this video : https://vimeo.com/51056859 especially how the words “le supplement” appearI’d like to reproduce that animation. I’ve tried this expression by Dan Ebberts, which is nice but the problem here is that the letters are bouncing, not only “sliding”….
freq = 2;
decay = 5;
delay = .15;
dur = .12;myDelay = (textIndex-1)*delay;
t = time - (inPoint + myDelay);
startVal = 100;
endVal = 0;if(t < dur){
linear(t,0,dur,startVal,endVal);
}else{
amp = (endVal - startVal)/dur;
w = freq*Math.PI*2;
endVal + amp*(Math.sin(t*w)/Math.exp(decay*t)/w);
}So my question is : how can I achieve that kind of animation ?
If you look further in the video, you will see very nice shape layers animation.
Do you know some great tutorials to achieve such animations ?Thanks a lot !