cue

cueNode

Presence on the timeline: what it wraps fades in at its in: anchor and out at its out: anchor. The rest of the cue family nests inside it — a highlight or a trace acts on content a cue has already brought in.

Writing with it:Parameters & cues

#Attributes

Anchor: a step index (1), a time (1.5s), or a compound offset (1 + 500ms). Reveals at this anchor.Can be written as shorthand: cue:value
Defaultnone
Anchor: a step index (1), a time (1.5s), or a compound offset (1 + 500ms). Hides at this anchor.
Defaultnone
in-duration
In animation duration (ms).
Default500ms
out-duration
Out animation duration (ms).
Default500ms
easing
linearsmooth
Easing function.
Defaultsmooth

#Allowed content

#Allowed in

#Examples

cue{
    point(x: 1; y: 2)
}(
    in: 1
    out: 3
)
cue{
    Reveal this text
}(
    in: 2
)