Basics

Guides

API Reference

Menu

Basics

Guides

API Reference

class: SequentialTransition

[11:7] extends: Transition

Represents a JavaFX SequentialTransition that runs multiple child animations one after another in sequence.

Methods

  • SequentialTransition ()

    Creates a new SequentialTransition with no child animations.

  • add (Items)

    Adds one or more child animations to this sequential transition.

    • @p Items is either a single transition object or a list of transition objects to add.
    • @r this object.
  • setNode (object NodeObj)

    Sets the target Node for the timing in this transition. Child transitions that do not declare their own node will use this one.

    • @p NodeObj is a Node wrapper to use as the default target.
    • @r this object
  • getNode ()

    Returns the target Node currently set on this transition, or null when no default node is set.

    • @r An AJO wrapping javafx.scene.Node, or null.
  • nodeProperty ()

    Returns the ObjectProperty backing the target Node reference.

    • @r An AJO wrapping javafx.beans.property.ObjectProperty.
  • getChildren ()

    Returns the observable list of child animations.

    • @r An AJO wrapping javafx.collections.ObservableList.