Transition
plays a list of Animations
in sequential order.
Children of this Transition
inherit node
, if their
node
property is not specified.
Code Segment Example:
Rectangle rect = new Rectangle (100, 40, 100, 100);
rect.setArcHeight(50);
rect.setArcWidth(50);
rect.setFill(Color.VIOLET);
final Duration SEC_2 = Duration.millis(2000);
final Duration SEC_3 = Duration.millis(3000);
PauseTransition pt = new PauseTransition(Duration.millis(1000));
FadeTransition ft = new FadeTransition(SEC_3);
ft.setFromValue(1.0f);
ft.setToValue(0.3f);
ft.setCycleCount(2f);
ft.setAutoReverse(true);
TranslateTransition tt = new TranslateTransition(SEC_2);
tt.setFromX(-100f);
tt.setToX(100f);
tt.setCycleCount(2f);
tt.setAutoReverse(true);
RotateTransition rt = new RotateTransition(SEC_3);
rt.setByAngle(180f);
rt.setCycleCount(4f);
rt.setAutoReverse(true);
ScaleTransition st = new ScaleTransition(SEC_2);
st.setByX(1.5f);
st.setByY(1.5f);
st.setCycleCount(2f);
st.setAutoReverse(true);
SequentialTransition seqT = new SequentialTransition (rect, pt, ft, tt, rt, st);
seqT.play();
- Since:
- JavaFX 2.0
- See Also:
-
Property Summary
Properties declared in class javafx.animation.Transition
interpolator
Properties declared in class javafx.animation.Animation
autoReverse, currentRate, currentTime, cycleCount, cycleDuration, delay, onFinished, rate, status, totalDuration
-
Nested Class Summary
Nested classes/interfaces declared in class javafx.animation.Animation
Animation.Status
-
Field Summary
Fields declared in class javafx.animation.Animation
INDEFINITE
-
Constructor Summary
ConstructorDescriptionThe constructor ofSequentialTransition
.SequentialTransition
(Animation... children) The constructor ofSequentialTransition
.SequentialTransition
(Node node) The constructor ofSequentialTransition
.SequentialTransition
(Node node, Animation... children) The constructor ofSequentialTransition
. -
Method Summary
Modifier and TypeMethodDescriptionfinal ObservableList<Animation>
A list ofAnimations
that will be played sequentially.final Node
getNode()
Gets the value of thenode
property.protected void
interpolate
(double frac) The methodinterpolate()
has to be provided by implementations ofTransition
.final ObjectProperty<Node>
final void
Sets the value of thenode
property.Methods declared in class javafx.animation.Transition
getCachedInterpolator, getInterpolator, getParentTargetNode, interpolatorProperty, setInterpolator
Methods declared in class javafx.animation.Animation
autoReverseProperty, currentRateProperty, currentTimeProperty, cycleCountProperty, cycleDurationProperty, delayProperty, getCuePoints, getCurrentRate, getCurrentTime, getCycleCount, getCycleDuration, getDelay, getOnFinished, getRate, getStatus, getTargetFramerate, getTotalDuration, isAutoReverse, jumpTo, jumpTo, onFinishedProperty, pause, play, playFrom, playFrom, playFromStart, rateProperty, setAutoReverse, setCycleCount, setCycleDuration, setDelay, setOnFinished, setRate, setStatus, statusProperty, stop, totalDurationProperty
-
Property Details
-
node
ThisNode
is used in all childTransitions
, that do not define a targetNode
themselves. This can be used if a number ofTransitions
should be applied to a singleNode
.It is not possible to change the target
node
of a runningTransition
. If the value ofnode
is changed for a runningTransition
, the animation has to be stopped and started again to pick up the new value.- See Also:
-
-
Constructor Details
-
SequentialTransition
The constructor ofSequentialTransition
.- Parameters:
node
- The targetNode
to be used in childTransitions
that have noNode
specified themselveschildren
- The childAnimations
of thisSequentialTransition
-
SequentialTransition
The constructor ofSequentialTransition
.- Parameters:
children
- The childAnimations
of thisSequentialTransition
-
SequentialTransition
The constructor ofSequentialTransition
.- Parameters:
node
- The targetNode
to be used in childTransitions
that have noNode
specified themselves
-
SequentialTransition
public SequentialTransition()The constructor ofSequentialTransition
.
-
-
Method Details
-
setNode
Sets the value of thenode
property.- Property description:
- This
Node
is used in all childTransitions
, that do not define a targetNode
themselves. This can be used if a number ofTransitions
should be applied to a singleNode
.It is not possible to change the target
node
of a runningTransition
. If the value ofnode
is changed for a runningTransition
, the animation has to be stopped and started again to pick up the new value. - Parameters:
value
- the value for thenode
property- See Also:
-
getNode
Gets the value of thenode
property.- Property description:
- This
Node
is used in all childTransitions
, that do not define a targetNode
themselves. This can be used if a number ofTransitions
should be applied to a singleNode
.It is not possible to change the target
node
of a runningTransition
. If the value ofnode
is changed for a runningTransition
, the animation has to be stopped and started again to pick up the new value. - Returns:
- the value of the
node
property - See Also:
-
nodeProperty
ThisNode
is used in all childTransitions
, that do not define a targetNode
themselves. This can be used if a number ofTransitions
should be applied to a singleNode
.It is not possible to change the target
node
of a runningTransition
. If the value ofnode
is changed for a runningTransition
, the animation has to be stopped and started again to pick up the new value.- Returns:
- the
node
property - See Also:
-
getChildren
A list ofAnimations
that will be played sequentially.It is not possible to change the children of a running
SequentialTransition
. If the children are changed for a runningSequentialTransition
, the animation has to be stopped and started again to pick up the new value.- Returns:
- a list of Animations that will be played sequentially
-
interpolate
protected void interpolate(double frac) The methodinterpolate()
has to be provided by implementations ofTransition
. While aTransition
is running, this method is called in every frame. The parameter defines the current position with the animation. At the start, the fraction will be0.0
and at the end it will be1.0
. How the parameter increases, depends on theinterpolator
, e.g. if theinterpolator
isInterpolator.LINEAR
, the fraction will increase linear. This method must not be called by the user directly.- Specified by:
interpolate
in classTransition
- Parameters:
frac
- The relative position
-