level 9
学影社大飞💯
楼主
// 将素材的透明度添加下面表达式
parent.opacity; // 绑定转场调整图层为父层
// 在调整图层的 Opacity 上添加表达式
switch(true){
case time == inPoint:
0;break;
case time > inPoint && time <= inPoint + 1:
posterizeTime(10);random(100);break;
case time >= outPoint -1 && time < outPoint:
linear(time,outPoint - 1,outPoint,random(100),0);break;
default:
100;
}
如此就可以实现在调整图层的入点出点位置闪烁转场的效果
2019年08月30日 09点08分
1
parent.opacity; // 绑定转场调整图层为父层
// 在调整图层的 Opacity 上添加表达式
switch(true){
case time == inPoint:
0;break;
case time > inPoint && time <= inPoint + 1:
posterizeTime(10);random(100);break;
case time >= outPoint -1 && time < outPoint:
linear(time,outPoint - 1,outPoint,random(100),0);break;
default:
100;
}
如此就可以实现在调整图层的入点出点位置闪烁转场的效果