1形狀寬度跟隨文字長度
//第一層 形狀層夜赵,第二層 文字層
x=thisComp.layer("redblue").sourceRectAtTime().width;
[x,value[1]]
2位移控制旋轉(zhuǎn)LINEAR&EASE
//控制點 位移key幀
//球 旋轉(zhuǎn) t后面的四項數(shù)字分別是 控制點的最小值、最大值,球旋轉(zhuǎn)的最小值缨硝、最大值
t =thisComp.layer("控制點").transform.position[1]
linear(t, 85, 418, 0, 180)
對控制點的x和y分別做限制
3鎖定某一軸向
scale[0],scale[1]
4隨機(jī)波動柱形
// 基礎(chǔ)柱形 縮放
[scale[0],wiggle(9,100)[1]]
//衍生柱形 x位移
(thisComp.layer("基礎(chǔ)柱形").transform.xPosition*index+(((index-1)*2)*thisComp.layer("控制層").effect("控制距離")("滑塊")))
//衍生柱形 縮放
[scale[0],wiggle(9,100)[1]]
5linear映射(位移映射位移)
//紅圓 位移 key幀
// 藍(lán)圓 位移
Ax = thisComp.layer("紅圓").transform.position[0];
linear(Ax,241,1040,241,600)
//文字層(紅圓位移數(shù))源文本
Math.round(thisComp.layer("紅圓").transform.position[0])
//文字層(紅圓位移數(shù))x位置
thisComp.layer("紅圓").transform.position[0]
6linear映射(位移映射縮放)
//列表圖層 y軸位移 key幀
//圖片圖層 縮放 333,438是列表的位移數(shù)值炉菲,100,190是圖片的縮放數(shù)值
Ax = thisComp.layer("列表").transform.yPosition;
[linear(Ax,333,438,100,190),linear(Ax,333,438,100,190)]
7linear映射(位移映射縮放&透明度)
//側(cè)邊欄 位移key幀
//列表縮放
Ax = thisComp.layer("側(cè)邊欄").transform.xPosition;
[linear(Ax,31,187,100,87),linear(Ax,31,187,100,87)]
//遮罩 透明度
Ax = thisComp.layer("側(cè)邊欄").transform.xPosition;
linear(Ax,31,187,0,60)
8linear映射(位移映射自身縮放&圓角)
//紅 位移key幀+彈性表達(dá)式(見文章表達(dá)式1)
//藍(lán) 圓角
Ax = thisComp.layer("紅").transform.yPosition;
linear(Ax,333,418,0,12)
//藍(lán) 位移
thisComp.layer("紅").transform.yPosition+(-(index-2)*30)
//藍(lán) 縮放
Ax = transform.yPosition;
[linear(Ax,333,418,100,87)-(index-2)*10,linear(Ax,333,418,100,87)-(index-2)*10]
//黃色 圓角位移縮放同藍(lán)