AE怎么制作炫酷的转场文字动态效果【教程分享】


    今天为大家AE制作炫酷的转场文字动态效果教程,教程比较基础,非常适合新手来学习,推荐过来,一起来学习吧!
    接下来是关于本次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);
    }
    以上就是AE制作炫酷的转场文字动态效果方法,怎么样,大家学会了吗?希望这篇文章能对大家有所帮助!