教程
FEVTE编注:更多After Effects实例教程学习交流和After Effects作品发布请访问飞特网After Effects实例教程栏目,地址:https://www.fevte.com/moive/AE/AESL/
第一次写教程,简单的说应该是读书笔记哈哈。
在此感谢带入门的:龙子潇~
接下来是关于本次ae动效的制作过程,如有问题欢迎与我联系~谢谢
表达式在文章底部出现~复制使用
附:文字弹性表达式
(用于添加到文字的Animator-Add-Expression Selector-Amount中,为文字添加弹弹跳效果)
freq: 频率,数值越小弹动越缓慢;
decay: 衰变,数值越小重复弹动的越多;
duration:持续时间,数值越小动画播放越快
freq = 1;
decay = 6;
duration = 0.25;
retard = textIndex*thisComp.frameDuration*1;
t = time - (inPoint + retard);
startVal = [100,100,100];
endVal = [0,0,0];
if (t
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);
}
飞特游客
回复 乐天happy说的: 正确的表达式,需要的话就用吧freq = 1;decay = 6;duration = 0.25;retard = textIndex*thisComp.frameDuration*1;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);}
查看全部评论(10)
委托设计