Transition creates a move/translate animation that spans its
 duration. This is done by updating the translateX,
 translateY and translateZ variables of the node at
 regular interval.
 
 It starts from the (fromX, fromY, fromZ) value if
 provided else uses the node's (translateX, translateY, translateZ) value.
 
 It stops at the (toX, toY, toZ) value if provided
 else it will use start value plus (byX, byY, byZ)
 value.
 
 The (toX, toY, toZ) value takes precedence if both (
 toX, toY, toZ) and (byX, byY,
 byZ) values are specified.
 
Code Segment Example:
 
 import javafx.scene.shape.*;
 import javafx.animation.*;
 ...
     Rectangle rect = new Rectangle (100, 40, 100, 100);
     rect.setArcHeight(50);
     rect.setArcWidth(50);
     rect.setFill(Color.VIOLET);
     TranslateTransition tt = new TranslateTransition(Duration.millis(2000), rect);
     tt.setByX(200f);
     tt.setCycleCount(4f);
     tt.setAutoReverse(true);
     tt.play();
 ...
 
 - Since:
- JavaFX 2.0
- See Also:
- 
Property SummaryPropertiesTypePropertyDescriptionfinal DoublePropertySpecifies the incremented stop X coordinate value, from the start, of thisTranslateTransition.final DoublePropertySpecifies the incremented stop Y coordinate value, from the start, of thisTranslateTransition.final DoublePropertySpecifies the incremented stop Z coordinate value, from the start, of thisTranslateTransition.final ObjectProperty<Duration>The duration of thisTranslateTransition.final DoublePropertySpecifies the start X coordinate value of thisTranslateTransition.final DoublePropertySpecifies the start Y coordinate value of thisTranslateTransition.final DoublePropertySpecifies the start Z coordinate value of thisTranslateTransition.final ObjectProperty<Node>The target node of thisTranslateTransition.final DoublePropertySpecifies the stop X coordinate value of thisTranslateTransition.final DoublePropertySpecifies the stop Y coordinate value of thisTranslateTransition.final DoublePropertySpecifies the stop Z coordinate value of thisTranslateTransition.Properties declared in class javafx.animation.TransitioninterpolatorProperties declared in class javafx.animation.AnimationautoReverse, currentRate, currentTime, cycleCount, cycleDuration, delay, onFinished, rate, status, totalDuration
- 
Nested Class SummaryNested classes/interfaces declared in class javafx.animation.AnimationAnimation.Status
- 
Field SummaryFields declared in class javafx.animation.AnimationINDEFINITE
- 
Constructor SummaryConstructorsConstructorDescriptionThe constructor ofTranslateTransitionTranslateTransition(Duration duration) The constructor ofTranslateTransitionTranslateTransition(Duration duration, Node node) The constructor ofTranslateTransition
- 
Method SummaryModifier and TypeMethodDescriptionfinal DoublePropertySpecifies the incremented stop X coordinate value, from the start, of thisTranslateTransition.final DoublePropertySpecifies the incremented stop Y coordinate value, from the start, of thisTranslateTransition.final DoublePropertySpecifies the incremented stop Z coordinate value, from the start, of thisTranslateTransition.final ObjectProperty<Duration>The duration of thisTranslateTransition.final DoublePropertySpecifies the start X coordinate value of thisTranslateTransition.final DoublePropertySpecifies the start Y coordinate value of thisTranslateTransition.final DoublePropertySpecifies the start Z coordinate value of thisTranslateTransition.final doublegetByX()Gets the value of the property byX.final doublegetByY()Gets the value of the property byY.final doublegetByZ()Gets the value of the property byZ.final DurationGets the value of the property duration.final doublegetFromX()Gets the value of the property fromX.final doublegetFromY()Gets the value of the property fromY.final doublegetFromZ()Gets the value of the property fromZ.final NodegetNode()Gets the value of the property node.final doublegetToX()Gets the value of the property toX.final doublegetToY()Gets the value of the property toY.final doublegetToZ()Gets the value of the property toZ.voidinterpolate(double frac) The methodinterpolate()has to be provided by implementations ofTransition.final ObjectProperty<Node>The target node of thisTranslateTransition.final voidsetByX(double value) Sets the value of the property byX.final voidsetByY(double value) Sets the value of the property byY.final voidsetByZ(double value) Sets the value of the property byZ.final voidsetDuration(Duration value) Sets the value of the property duration.final voidsetFromX(double value) Sets the value of the property fromX.final voidsetFromY(double value) Sets the value of the property fromY.final voidsetFromZ(double value) Sets the value of the property fromZ.final voidSets the value of the property node.final voidsetToX(double value) Sets the value of the property toX.final voidsetToY(double value) Sets the value of the property toY.final voidsetToZ(double value) Sets the value of the property toZ.final DoublePropertySpecifies the stop X coordinate value of thisTranslateTransition.final DoublePropertySpecifies the stop Y coordinate value of thisTranslateTransition.final DoublePropertySpecifies the stop Z coordinate value of thisTranslateTransition.Methods declared in class javafx.animation.TransitiongetCachedInterpolator, getInterpolator, getParentTargetNode, interpolatorProperty, setInterpolatorMethods declared in class javafx.animation.AnimationautoReverseProperty, 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- 
nodeThe target node of thisTranslateTransition.It is not possible to change the target nodeof a runningTranslateTransition. If the value ofnodeis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.- See Also:
 
- 
durationThe duration of thisTranslateTransition.It is not possible to change the durationof a runningTranslateTransition. If the value ofdurationis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.Note: While the unit of durationis a millisecond, the granularity depends on the underlying operating system and will in general be larger. For example animations on desktop systems usually run with a maximum of 60fps which gives a granularity of ~17 ms. Setting duration to value lower thanDuration.ZEROwill result inIllegalArgumentException.- Default value:
- 400ms
- See Also:
 
- 
fromXSpecifies the start X coordinate value of thisTranslateTransition.It is not possible to change fromXof a runningTranslateTransition. If the value offromXis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.- Default value:
- Double.NaN
- See Also:
 
- 
fromYSpecifies the start Y coordinate value of thisTranslateTransition.It is not possible to change fromYof a runningTranslateTransition. If the value offromYis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.- Default value:
- Double.NaN
- See Also:
 
- 
fromZSpecifies the start Z coordinate value of thisTranslateTransition.It is not possible to change fromZof a runningTranslateTransition. If the value offromZis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.- Default value:
- Double.NaN
- See Also:
 
- 
toXSpecifies the stop X coordinate value of thisTranslateTransition.It is not possible to change toXof a runningTranslateTransition. If the value oftoXis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.- Default value:
- Double.NaN
- See Also:
 
- 
toYSpecifies the stop Y coordinate value of thisTranslateTransition.It is not possible to change toYof a runningTranslateTransition. If the value oftoYis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.- Default value:
- Double.NaN
- See Also:
 
- 
toZSpecifies the stop Z coordinate value of thisTranslateTransition.It is not possible to change toZof a runningTranslateTransition. If the value oftoZis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.- Default value:
- Double.NaN
- See Also:
 
- 
byXSpecifies the incremented stop X coordinate value, from the start, of thisTranslateTransition.It is not possible to change byXof a runningTranslateTransition. If the value ofbyXis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.- See Also:
 
- 
byYSpecifies the incremented stop Y coordinate value, from the start, of thisTranslateTransition.It is not possible to change byYof a runningTranslateTransition. If the value ofbyYis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.- See Also:
 
- 
byZSpecifies the incremented stop Z coordinate value, from the start, of thisTranslateTransition.It is not possible to change byZof a runningTranslateTransition. If the value ofbyZis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.- See Also:
 
 
- 
- 
Constructor Details- 
TranslateTransitionThe constructor ofTranslateTransition- Parameters:
- duration- The duration of the- TranslateTransition
- node- The- nodewhich will be translated
 
- 
TranslateTransitionThe constructor ofTranslateTransition- Parameters:
- duration- The duration of the- TranslateTransition
 
- 
TranslateTransitionpublic TranslateTransition()The constructor ofTranslateTransition
 
- 
- 
Method Details- 
setNodeSets the value of the property node.- Property description:
- The target node of this TranslateTransition.It is not possible to change the target nodeof a runningTranslateTransition. If the value ofnodeis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.
 
- 
getNodeGets the value of the property node.- Property description:
- The target node of this TranslateTransition.It is not possible to change the target nodeof a runningTranslateTransition. If the value ofnodeis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.
 
- 
nodePropertyThe target node of thisTranslateTransition.It is not possible to change the target nodeof a runningTranslateTransition. If the value ofnodeis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.- See Also:
 
- 
setDurationSets the value of the property duration.- Property description:
- The duration of this TranslateTransition.It is not possible to change the durationof a runningTranslateTransition. If the value ofdurationis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.Note: While the unit of durationis a millisecond, the granularity depends on the underlying operating system and will in general be larger. For example animations on desktop systems usually run with a maximum of 60fps which gives a granularity of ~17 ms. Setting duration to value lower thanDuration.ZEROwill result inIllegalArgumentException.
- Default value:
- 400ms
 
- 
getDurationGets the value of the property duration.- Property description:
- The duration of this TranslateTransition.It is not possible to change the durationof a runningTranslateTransition. If the value ofdurationis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.Note: While the unit of durationis a millisecond, the granularity depends on the underlying operating system and will in general be larger. For example animations on desktop systems usually run with a maximum of 60fps which gives a granularity of ~17 ms. Setting duration to value lower thanDuration.ZEROwill result inIllegalArgumentException.
- Default value:
- 400ms
 
- 
durationPropertyThe duration of thisTranslateTransition.It is not possible to change the durationof a runningTranslateTransition. If the value ofdurationis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.Note: While the unit of durationis a millisecond, the granularity depends on the underlying operating system and will in general be larger. For example animations on desktop systems usually run with a maximum of 60fps which gives a granularity of ~17 ms. Setting duration to value lower thanDuration.ZEROwill result inIllegalArgumentException.- Default value:
- 400ms
- See Also:
 
- 
setFromXpublic final void setFromX(double value) Sets the value of the property fromX.- Property description:
- Specifies the start X coordinate value of this
 TranslateTransition.It is not possible to change fromXof a runningTranslateTransition. If the value offromXis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.
- Default value:
- Double.NaN
 
- 
getFromXpublic final double getFromX()Gets the value of the property fromX.- Property description:
- Specifies the start X coordinate value of this
 TranslateTransition.It is not possible to change fromXof a runningTranslateTransition. If the value offromXis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.
- Default value:
- Double.NaN
 
- 
fromXPropertySpecifies the start X coordinate value of thisTranslateTransition.It is not possible to change fromXof a runningTranslateTransition. If the value offromXis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.- Default value:
- Double.NaN
- See Also:
 
- 
setFromYpublic final void setFromY(double value) Sets the value of the property fromY.- Property description:
- Specifies the start Y coordinate value of this
 TranslateTransition.It is not possible to change fromYof a runningTranslateTransition. If the value offromYis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.
- Default value:
- Double.NaN
 
- 
getFromYpublic final double getFromY()Gets the value of the property fromY.- Property description:
- Specifies the start Y coordinate value of this
 TranslateTransition.It is not possible to change fromYof a runningTranslateTransition. If the value offromYis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.
- Default value:
- Double.NaN
 
- 
fromYPropertySpecifies the start Y coordinate value of thisTranslateTransition.It is not possible to change fromYof a runningTranslateTransition. If the value offromYis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.- Default value:
- Double.NaN
- See Also:
 
- 
setFromZpublic final void setFromZ(double value) Sets the value of the property fromZ.- Property description:
- Specifies the start Z coordinate value of this
 TranslateTransition.It is not possible to change fromZof a runningTranslateTransition. If the value offromZis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.
- Default value:
- Double.NaN
 
- 
getFromZpublic final double getFromZ()Gets the value of the property fromZ.- Property description:
- Specifies the start Z coordinate value of this
 TranslateTransition.It is not possible to change fromZof a runningTranslateTransition. If the value offromZis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.
- Default value:
- Double.NaN
 
- 
fromZPropertySpecifies the start Z coordinate value of thisTranslateTransition.It is not possible to change fromZof a runningTranslateTransition. If the value offromZis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.- Default value:
- Double.NaN
- See Also:
 
- 
setToXpublic final void setToX(double value) Sets the value of the property toX.- Property description:
- Specifies the stop X coordinate value of this TranslateTransition.It is not possible to change toXof a runningTranslateTransition. If the value oftoXis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.
- Default value:
- Double.NaN
 
- 
getToXpublic final double getToX()Gets the value of the property toX.- Property description:
- Specifies the stop X coordinate value of this TranslateTransition.It is not possible to change toXof a runningTranslateTransition. If the value oftoXis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.
- Default value:
- Double.NaN
 
- 
toXPropertySpecifies the stop X coordinate value of thisTranslateTransition.It is not possible to change toXof a runningTranslateTransition. If the value oftoXis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.- Default value:
- Double.NaN
- See Also:
 
- 
setToYpublic final void setToY(double value) Sets the value of the property toY.- Property description:
- Specifies the stop Y coordinate value of this TranslateTransition.It is not possible to change toYof a runningTranslateTransition. If the value oftoYis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.
- Default value:
- Double.NaN
 
- 
getToYpublic final double getToY()Gets the value of the property toY.- Property description:
- Specifies the stop Y coordinate value of this TranslateTransition.It is not possible to change toYof a runningTranslateTransition. If the value oftoYis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.
- Default value:
- Double.NaN
 
- 
toYPropertySpecifies the stop Y coordinate value of thisTranslateTransition.It is not possible to change toYof a runningTranslateTransition. If the value oftoYis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.- Default value:
- Double.NaN
- See Also:
 
- 
setToZpublic final void setToZ(double value) Sets the value of the property toZ.- Property description:
- Specifies the stop Z coordinate value of this TranslateTransition.It is not possible to change toZof a runningTranslateTransition. If the value oftoZis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.
- Default value:
- Double.NaN
 
- 
getToZpublic final double getToZ()Gets the value of the property toZ.- Property description:
- Specifies the stop Z coordinate value of this TranslateTransition.It is not possible to change toZof a runningTranslateTransition. If the value oftoZis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.
- Default value:
- Double.NaN
 
- 
toZPropertySpecifies the stop Z coordinate value of thisTranslateTransition.It is not possible to change toZof a runningTranslateTransition. If the value oftoZis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.- Default value:
- Double.NaN
- See Also:
 
- 
setByXpublic final void setByX(double value) Sets the value of the property byX.- Property description:
- Specifies the incremented stop X coordinate value, from the start, of
 this TranslateTransition.It is not possible to change byXof a runningTranslateTransition. If the value ofbyXis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.
 
- 
getByXpublic final double getByX()Gets the value of the property byX.- Property description:
- Specifies the incremented stop X coordinate value, from the start, of
 this TranslateTransition.It is not possible to change byXof a runningTranslateTransition. If the value ofbyXis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.
 
- 
byXPropertySpecifies the incremented stop X coordinate value, from the start, of thisTranslateTransition.It is not possible to change byXof a runningTranslateTransition. If the value ofbyXis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.- See Also:
 
- 
setByYpublic final void setByY(double value) Sets the value of the property byY.- Property description:
- Specifies the incremented stop Y coordinate value, from the start, of
 this TranslateTransition.It is not possible to change byYof a runningTranslateTransition. If the value ofbyYis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.
 
- 
getByYpublic final double getByY()Gets the value of the property byY.- Property description:
- Specifies the incremented stop Y coordinate value, from the start, of
 this TranslateTransition.It is not possible to change byYof a runningTranslateTransition. If the value ofbyYis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.
 
- 
byYPropertySpecifies the incremented stop Y coordinate value, from the start, of thisTranslateTransition.It is not possible to change byYof a runningTranslateTransition. If the value ofbyYis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.- See Also:
 
- 
setByZpublic final void setByZ(double value) Sets the value of the property byZ.- Property description:
- Specifies the incremented stop Z coordinate value, from the start, of
 this TranslateTransition.It is not possible to change byZof a runningTranslateTransition. If the value ofbyZis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.
 
- 
getByZpublic final double getByZ()Gets the value of the property byZ.- Property description:
- Specifies the incremented stop Z coordinate value, from the start, of
 this TranslateTransition.It is not possible to change byZof a runningTranslateTransition. If the value ofbyZis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.
 
- 
byZPropertySpecifies the incremented stop Z coordinate value, from the start, of thisTranslateTransition.It is not possible to change byZof a runningTranslateTransition. If the value ofbyZis changed for a runningTranslateTransition, the animation has to be stopped and started again to pick up the new value.- See Also:
 
- 
interpolatepublic void interpolate(double frac) The methodinterpolate()has to be provided by implementations ofTransition. While aTransitionis running, this method is called in every frame. The parameter defines the current position with the animation. At the start, the fraction will be0.0and at the end it will be1.0. How the parameter increases, depends on theinterpolator, e.g. if theinterpolatorisInterpolator.LINEAR, the fraction will increase linear. This method must not be called by the user directly.- Specified by:
- interpolatein class- Transition
- Parameters:
- frac- The relative position
 
 
-