Lorem ipsum dolor sit amet, consectetur adipiscing elit. Test link

Make cool animation with Squash and Stretch Scale Expression in After Effects

Make cool animation with Squash and Stretch Scale Expression in After Effects

 

Squash and Stretch Scale Expression

Collect this Squash and Stretch Expression to make your Animations look dynamic. To make this Animation first create two keyframes position then past the code

maxDev = 13; // max deviation in pixels
spd = 30; //speed of oscillation
decay = 1.0; //how fast it slows down
t = time - inPoint;
x = scale[0] + maxDev*Math.sin(spd*t)/Math.exp(decay*t);
y = scale[0]*scale[1]/x;
[x,y]