- java.lang.Object
-
- javafx.animation.Animation
-
- javafx.animation.Transition
-
- javafx.animation.ParallelTransition
-
public final class ParallelTransition extends Transition
ThisTransitionplays a list ofAnimationsin parallel.Children of this
Transitioninheritnode, if theirnodeproperty 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); 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); ParallelTransition pt = new ParallelTransition(rect, ft, tt, rt, st); pt.play();- Since:
- JavaFX 2.0
- See Also:
Transition,Animation
-
-
Property Summary
Properties Type Property Description ObjectProperty<Node>node-
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
Constructors Constructor Description ParallelTransition()The constructor ofParallelTransition.ParallelTransition(Animation... children)The constructor ofParallelTransition.ParallelTransition(Node node)The constructor ofParallelTransition.ParallelTransition(Node node, Animation... children)The constructor ofParallelTransition.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObservableList<Animation>getChildren()A list ofAnimationsthat will be played sequentially.NodegetNode()Gets the value of the property node.ObjectProperty<Node>nodeProperty()voidsetNode(Node value)Sets the value of the property node.-
Methods declared in class javafx.animation.Transition
getCachedInterpolator, getInterpolator, getParentTargetNode, interpolate, 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 Detail
-
node
public final ObjectProperty<Node> nodeProperty
ThisNodeis used in all childTransitions, that do not define a targetNodethemselves. This can be used if a number ofTransitionsshould be applied to a singleNode.It is not possible to change the target
nodeof a runningTransition. If the value ofnodeis changed for a runningTransition, the animation has to be stopped and started again to pick up the new value.- See Also:
getNode(),setNode(Node)
-
-
Constructor Detail
-
ParallelTransition
public ParallelTransition(Node node, Animation... children)
The constructor ofParallelTransition.- Parameters:
node- The targetNodeto be used in childTransitionsthat have noNodespecified themselveschildren- The childAnimationsof thisParallelTransition
-
ParallelTransition
public ParallelTransition(Animation... children)
The constructor ofParallelTransition.- Parameters:
children- The childAnimationsof thisParallelTransition
-
ParallelTransition
public ParallelTransition(Node node)
The constructor ofParallelTransition.- Parameters:
node- The targetNodeto be used in childTransitionsthat have noNodespecified themselves
-
ParallelTransition
public ParallelTransition()
The constructor ofParallelTransition.
-
-
Method Detail
-
setNode
public final void setNode(Node value)
Sets the value of the property node.- Property description:
- This
Nodeis used in all childTransitions, that do not define a targetNodethemselves. This can be used if a number ofTransitionsshould be applied to a singleNode.It is not possible to change the target
nodeof a runningTransition. If the value ofnodeis changed for a runningTransition, the animation has to be stopped and started again to pick up the new value.
-
getNode
public final Node getNode()
Gets the value of the property node.- Property description:
- This
Nodeis used in all childTransitions, that do not define a targetNodethemselves. This can be used if a number ofTransitionsshould be applied to a singleNode.It is not possible to change the target
nodeof a runningTransition. If the value ofnodeis changed for a runningTransition, the animation has to be stopped and started again to pick up the new value.
-
nodeProperty
public final ObjectProperty<Node> nodeProperty()
ThisNodeis used in all childTransitions, that do not define a targetNodethemselves. This can be used if a number ofTransitionsshould be applied to a singleNode.It is not possible to change the target
nodeof a runningTransition. If the value ofnodeis changed for a runningTransition, the animation has to be stopped and started again to pick up the new value.- See Also:
getNode(),setNode(Node)
-
getChildren
public final ObservableList<Animation> getChildren()
A list ofAnimationsthat will be played sequentially.It is not possible to change the children of a running
ParallelTransition. If the children are changed for a runningParallelTransition, the animation has to be stopped and started again to pick up the new value.- Returns:
- the list of
Animations
-
-