Delay Fade Transition
Delays a fade-in or fade-out of the layer for a set time.
Code
delay = 1; // seconds
fadeDuration = 2;
t = time - inPoint - delay;
clamp(linear(t, 0, fadeDuration, 0, 100), 0, 100)
delayfadetransitionanimation
How to Use
Use on the Opacity property. The layer remains invisible until after the specified delay, then fades over fadeDuration seconds.