Transition creates a scale animation that spans its
 duration. This is done by updating the scaleX,
 scaleY and scaleZ variables of the node at regular
 interval.
 
 It starts from the (fromX, fromY, fromZ) value if
 provided else uses the node's (scaleX, scaleY,
 scaleZ) 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);
     ScaleTransition st = new ScaleTransition(Duration.millis(2000), rect);
     st.setByX(1.5f);
     st.setByY(1.5f);
     st.setCycleCount(4f);
     st.setAutoReverse(true);
     st.play();
 ...
 
 - Since:
- JavaFX 2.0
- See Also:
- Transition,- Animation
- 
Property SummaryPropertiesTypePropertyDescriptionSpecifies the incremented stop X scale value, from the start, of thisScaleTransition.Specifies the incremented stop Y scale value, from the start, of thisScaleTransition.Specifies the incremented stop Z scale value, from the start, of thisScaleTransition.The duration of thisScaleTransition.Specifies the start X scale value of thisScaleTransition.Specifies the start Y scale value of thisScaleTransition.Specifies the start Z scale value of thisScaleTransition.The target node of thisScaleTransition.Specifies the stop X scale value of thisScaleTransition.The stop Y scale value of thisScaleTransition.The stop Z scale value of thisScaleTransition.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 ofScaleTransitionScaleTransition(Duration duration)The constructor ofScaleTransitionScaleTransition(Duration duration, Node node)The constructor ofScaleTransition
- 
Method SummaryModifier and TypeMethodDescriptionSpecifies the incremented stop X scale value, from the start, of thisScaleTransition.Specifies the incremented stop Y scale value, from the start, of thisScaleTransition.Specifies the incremented stop Z scale value, from the start, of thisScaleTransition.The duration of thisScaleTransition.Specifies the start X scale value of thisScaleTransition.Specifies the start Y scale value of thisScaleTransition.Specifies the start Z scale value of thisScaleTransition.doublegetByX()Gets the value of the property byX.doublegetByY()Gets the value of the property byY.doublegetByZ()Gets the value of the property byZ.Gets the value of the property duration.doublegetFromX()Gets the value of the property fromX.doublegetFromY()Gets the value of the property fromY.doublegetFromZ()Gets the value of the property fromZ.getNode()Gets the value of the property node.doublegetToX()Gets the value of the property toX.doublegetToY()Gets the value of the property toY.doublegetToZ()Gets the value of the property toZ.voidinterpolate(double frac)The methodinterpolate()has to be provided by implementations ofTransition.The target node of thisScaleTransition.voidsetByX(double value)Sets the value of the property byX.voidsetByY(double value)Sets the value of the property byY.voidsetByZ(double value)Sets the value of the property byZ.voidsetDuration(Duration value)Sets the value of the property duration.voidsetFromX(double value)Sets the value of the property fromX.voidsetFromY(double value)Sets the value of the property fromY.voidsetFromZ(double value)Sets the value of the property fromZ.voidSets the value of the property node.voidsetToX(double value)Sets the value of the property toX.voidsetToY(double value)Sets the value of the property toY.voidsetToZ(double value)Sets the value of the property toZ.Specifies the stop X scale value of thisScaleTransition.The stop Y scale value of thisScaleTransition.The stop Z scale value of thisScaleTransition.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 thisScaleTransition.It is not possible to change the target nodeof a runningScaleTransition. If the value ofnodeis changed for a runningScaleTransition, the animation has to be stopped and started again to pick up the new value.- See Also:
- getNode(),- setNode(Node)
 
- 
durationThe duration of thisScaleTransition.It is not possible to change the durationof a runningScaleTransition. If the value ofdurationis changed for a runningScaleTransition, 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:
- getDuration(),- setDuration(Duration)
 
- 
fromXSpecifies the start X scale value of thisScaleTransition.It is not possible to change fromXof a runningScaleTransition. If the value offromXis changed for a runningScaleTransition, the animation has to be stopped and started again to pick up the new value.- Default value:
- Double.NaN
- See Also:
- getFromX(),- setFromX(double)
 
- 
fromYSpecifies the start Y scale value of thisScaleTransition.It is not possible to change fromYof a runningScaleTransition. If the value offromYis changed for a runningScaleTransition, the animation has to be stopped and started again to pick up the new value.- Default value:
- Double.NaN
- See Also:
- getFromY(),- setFromY(double)
 
- 
fromZSpecifies the start Z scale value of thisScaleTransition.It is not possible to change fromZof a runningScaleTransition. If the value offromZis changed for a runningScaleTransition, the animation has to be stopped and started again to pick up the new value.- Default value:
- Double.NaN
- See Also:
- getFromZ(),- setFromZ(double)
 
- 
toXSpecifies the stop X scale value of thisScaleTransition.It is not possible to change toXof a runningScaleTransition. If the value oftoXis changed for a runningScaleTransition, the animation has to be stopped and started again to pick up the new value.- Default value:
- Double.NaN
- See Also:
- getToX(),- setToX(double)
 
- 
toYThe stop Y scale value of thisScaleTransition.It is not possible to change toYof a runningScaleTransition. If the value oftoYis changed for a runningScaleTransition, the animation has to be stopped and started again to pick up the new value.- Default value:
- Double.NaN
- See Also:
- getToY(),- setToY(double)
 
- 
toZThe stop Z scale value of thisScaleTransition.It is not possible to change toZof a runningScaleTransition. If the value oftoZis changed for a runningScaleTransition, the animation has to be stopped and started again to pick up the new value.- Default value:
- Double.NaN
- See Also:
- getToZ(),- setToZ(double)
 
- 
byXSpecifies the incremented stop X scale value, from the start, of thisScaleTransition.It is not possible to change byXof a runningScaleTransition. If the value ofbyXis changed for a runningScaleTransition, the animation has to be stopped and started again to pick up the new value.- See Also:
- getByX(),- setByX(double)
 
- 
byYSpecifies the incremented stop Y scale value, from the start, of thisScaleTransition.It is not possible to change byYof a runningScaleTransition. If the value ofbyYis changed for a runningScaleTransition, the animation has to be stopped and started again to pick up the new value.- See Also:
- getByY(),- setByY(double)
 
- 
byZSpecifies the incremented stop Z scale value, from the start, of thisScaleTransition.It is not possible to change byZof a runningScaleTransition. If the value ofbyZis changed for a runningScaleTransition, the animation has to be stopped and started again to pick up the new value.- See Also:
- getByZ(),- setByZ(double)
 
 
- 
- 
Constructor Details- 
ScaleTransitionThe constructor ofScaleTransition- Parameters:
- duration- The duration of the- ScaleTransition
- node- The- nodewhich will be scaled
 
- 
ScaleTransitionThe constructor ofScaleTransition- Parameters:
- duration- The duration of the- ScaleTransition
 
- 
ScaleTransitionpublic ScaleTransition()The constructor ofScaleTransition
 
- 
- 
Method Details- 
setNodeSets the value of the property node.- Property description:
- The target node of this ScaleTransition.It is not possible to change the target nodeof a runningScaleTransition. If the value ofnodeis changed for a runningScaleTransition, 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 ScaleTransition.It is not possible to change the target nodeof a runningScaleTransition. If the value ofnodeis changed for a runningScaleTransition, the animation has to be stopped and started again to pick up the new value.
 
- 
nodePropertyThe target node of thisScaleTransition.It is not possible to change the target nodeof a runningScaleTransition. If the value ofnodeis changed for a runningScaleTransition, the animation has to be stopped and started again to pick up the new value.- See Also:
- getNode(),- setNode(Node)
 
- 
setDurationSets the value of the property duration.- Property description:
- The duration of this ScaleTransition.It is not possible to change the durationof a runningScaleTransition. If the value ofdurationis changed for a runningScaleTransition, 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 ScaleTransition.It is not possible to change the durationof a runningScaleTransition. If the value ofdurationis changed for a runningScaleTransition, 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 thisScaleTransition.It is not possible to change the durationof a runningScaleTransition. If the value ofdurationis changed for a runningScaleTransition, 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:
- getDuration(),- setDuration(Duration)
 
- 
setFromXpublic final void setFromX(double value)Sets the value of the property fromX.- Property description:
- Specifies the start X scale value of this ScaleTransition.It is not possible to change fromXof a runningScaleTransition. If the value offromXis changed for a runningScaleTransition, 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 scale value of this ScaleTransition.It is not possible to change fromXof a runningScaleTransition. If the value offromXis changed for a runningScaleTransition, the animation has to be stopped and started again to pick up the new value.
- Default value:
- Double.NaN
 
- 
fromXPropertySpecifies the start X scale value of thisScaleTransition.It is not possible to change fromXof a runningScaleTransition. If the value offromXis changed for a runningScaleTransition, the animation has to be stopped and started again to pick up the new value.- Default value:
- Double.NaN
- See Also:
- getFromX(),- setFromX(double)
 
- 
setFromYpublic final void setFromY(double value)Sets the value of the property fromY.- Property description:
- Specifies the start Y scale value of this ScaleTransition.It is not possible to change fromYof a runningScaleTransition. If the value offromYis changed for a runningScaleTransition, 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 scale value of this ScaleTransition.It is not possible to change fromYof a runningScaleTransition. If the value offromYis changed for a runningScaleTransition, the animation has to be stopped and started again to pick up the new value.
- Default value:
- Double.NaN
 
- 
fromYPropertySpecifies the start Y scale value of thisScaleTransition.It is not possible to change fromYof a runningScaleTransition. If the value offromYis changed for a runningScaleTransition, the animation has to be stopped and started again to pick up the new value.- Default value:
- Double.NaN
- See Also:
- getFromY(),- setFromY(double)
 
- 
setFromZpublic final void setFromZ(double value)Sets the value of the property fromZ.- Property description:
- Specifies the start Z scale value of this ScaleTransition.It is not possible to change fromZof a runningScaleTransition. If the value offromZis changed for a runningScaleTransition, 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 scale value of this ScaleTransition.It is not possible to change fromZof a runningScaleTransition. If the value offromZis changed for a runningScaleTransition, the animation has to be stopped and started again to pick up the new value.
- Default value:
- Double.NaN
 
- 
fromZPropertySpecifies the start Z scale value of thisScaleTransition.It is not possible to change fromZof a runningScaleTransition. If the value offromZis changed for a runningScaleTransition, the animation has to be stopped and started again to pick up the new value.- Default value:
- Double.NaN
- See Also:
- getFromZ(),- setFromZ(double)
 
- 
setToXpublic final void setToX(double value)Sets the value of the property toX.- Property description:
- Specifies the stop X scale value of this ScaleTransition.It is not possible to change toXof a runningScaleTransition. If the value oftoXis changed for a runningScaleTransition, 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 scale value of this ScaleTransition.It is not possible to change toXof a runningScaleTransition. If the value oftoXis changed for a runningScaleTransition, the animation has to be stopped and started again to pick up the new value.
- Default value:
- Double.NaN
 
- 
toXPropertySpecifies the stop X scale value of thisScaleTransition.It is not possible to change toXof a runningScaleTransition. If the value oftoXis changed for a runningScaleTransition, the animation has to be stopped and started again to pick up the new value.- Default value:
- Double.NaN
- See Also:
- getToX(),- setToX(double)
 
- 
setToYpublic final void setToY(double value)Sets the value of the property toY.- Property description:
- The stop Y scale value of this ScaleTransition.It is not possible to change toYof a runningScaleTransition. If the value oftoYis changed for a runningScaleTransition, 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:
- The stop Y scale value of this ScaleTransition.It is not possible to change toYof a runningScaleTransition. If the value oftoYis changed for a runningScaleTransition, the animation has to be stopped and started again to pick up the new value.
- Default value:
- Double.NaN
 
- 
toYPropertyThe stop Y scale value of thisScaleTransition.It is not possible to change toYof a runningScaleTransition. If the value oftoYis changed for a runningScaleTransition, the animation has to be stopped and started again to pick up the new value.- Default value:
- Double.NaN
- See Also:
- getToY(),- setToY(double)
 
- 
setToZpublic final void setToZ(double value)Sets the value of the property toZ.- Property description:
- The stop Z scale value of this ScaleTransition.It is not possible to change toZof a runningScaleTransition. If the value oftoZis changed for a runningScaleTransition, 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:
- The stop Z scale value of this ScaleTransition.It is not possible to change toZof a runningScaleTransition. If the value oftoZis changed for a runningScaleTransition, the animation has to be stopped and started again to pick up the new value.
- Default value:
- Double.NaN
 
- 
toZPropertyThe stop Z scale value of thisScaleTransition.It is not possible to change toZof a runningScaleTransition. If the value oftoZis changed for a runningScaleTransition, the animation has to be stopped and started again to pick up the new value.- Default value:
- Double.NaN
- See Also:
- getToZ(),- setToZ(double)
 
- 
setByXpublic final void setByX(double value)Sets the value of the property byX.- Property description:
- Specifies the incremented stop X scale value, from the start, of this
 ScaleTransition.It is not possible to change byXof a runningScaleTransition. If the value ofbyXis changed for a runningScaleTransition, 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 scale value, from the start, of this
 ScaleTransition.It is not possible to change byXof a runningScaleTransition. If the value ofbyXis changed for a runningScaleTransition, the animation has to be stopped and started again to pick up the new value.
 
- 
byXPropertySpecifies the incremented stop X scale value, from the start, of thisScaleTransition.It is not possible to change byXof a runningScaleTransition. If the value ofbyXis changed for a runningScaleTransition, the animation has to be stopped and started again to pick up the new value.- See Also:
- getByX(),- setByX(double)
 
- 
setByYpublic final void setByY(double value)Sets the value of the property byY.- Property description:
- Specifies the incremented stop Y scale value, from the start, of this
 ScaleTransition.It is not possible to change byYof a runningScaleTransition. If the value ofbyYis changed for a runningScaleTransition, 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 scale value, from the start, of this
 ScaleTransition.It is not possible to change byYof a runningScaleTransition. If the value ofbyYis changed for a runningScaleTransition, the animation has to be stopped and started again to pick up the new value.
 
- 
byYPropertySpecifies the incremented stop Y scale value, from the start, of thisScaleTransition.It is not possible to change byYof a runningScaleTransition. If the value ofbyYis changed for a runningScaleTransition, the animation has to be stopped and started again to pick up the new value.- See Also:
- getByY(),- setByY(double)
 
- 
setByZpublic final void setByZ(double value)Sets the value of the property byZ.- Property description:
- Specifies the incremented stop Z scale value, from the start, of this
 ScaleTransition.It is not possible to change byZof a runningScaleTransition. If the value ofbyZis changed for a runningScaleTransition, 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 scale value, from the start, of this
 ScaleTransition.It is not possible to change byZof a runningScaleTransition. If the value ofbyZis changed for a runningScaleTransition, the animation has to be stopped and started again to pick up the new value.
 
- 
byZPropertySpecifies the incremented stop Z scale value, from the start, of thisScaleTransition.It is not possible to change byZof a runningScaleTransition. If the value ofbyZis changed for a runningScaleTransition, the animation has to be stopped and started again to pick up the new value.- See Also:
- getByZ(),- setByZ(double)
 
- 
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
 
 
-