@@riskipradipta8774 make a scale keyframe e.g 0 to 100% - then hold alt, click on the scale keyframe icon clock and add this code n = 0; if (numKeys > 0){ n = nearestKey(time).index; if (key(n).time > time){ n--; } } if (n == 0){ t = 0; }else{ t = time - key(n).time; } if (n > 0 && t < 1){ v = velocityAtTime(key(n).time - thisComp.frameDuration/10); amp = .06; freq = 3; decay = 5.0; value + v*amp*Math.sin(freq*t*2*Math.PI)/Math.exp(decay*t); }else{ value; }
Keyframe Timing: Check the spacing between your keyframes. If the keyframes are too far apart, the animation will appear slow. Try moving them closer together to speed up the pop-up effect.
Thank you! I did similar, but ti was still stiff. The graph is very clear and I understand it
Just what I was looking for, thank you
Thank you very much. 😍😍😍😍
wow i was looking for this.
Simple and great tutorial. Thank you!
sharing the project file in the description would be a huge help
super helpful! thanks :)
Is there a way to apply same effect to multiple objects (with a delay for each individual) ?
👏👌 ty very much, simple, easy and great tutorial
wow, very nice indeed, i will try this, i am new in aftereffects
Add simple expression spring instead of many keyframes
How?
@@riskipradipta8774 make a scale keyframe e.g 0 to 100% - then hold alt, click on the scale keyframe icon clock and add this code
n = 0;
if (numKeys > 0){
n = nearestKey(time).index;
if (key(n).time > time){
n--;
}
}
if (n == 0){
t = 0;
}else{
t = time - key(n).time;
}
if (n > 0 && t < 1){
v = velocityAtTime(key(n).time - thisComp.frameDuration/10);
amp = .06;
freq = 3;
decay = 5.0;
value + v*amp*Math.sin(freq*t*2*Math.PI)/Math.exp(decay*t);
}else{
value;
}
As a beginner i find this more difficult, do i have to type this every time simply?
do we have to memories the number ?
no no no when i do it it does not come out fast it comes out slow
Keyframe Timing: Check the spacing between your keyframes. If the keyframes are too far apart, the animation will appear slow. Try moving them closer together to speed up the pop-up effect.