Class FadeTransition
Transition creates a fade effect animation that spans its
 duration. This is done by updating the opacity variable of
 the node at regular intervals.
 
 It starts from the fromValue if provided else uses the node's
 opacity value.
 
 It stops at the toValue value if provided else it will use start
 value plus byValue.
 
 The toValue takes precedence if both toValue and
 byValue 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);
     FadeTransition ft = new FadeTransition(Duration.millis(3000), rect);
     ft.setFromValue(1.0);
     ft.setToValue(0.3);
     ft.setCycleCount(4);
     ft.setAutoReverse(true);
     ft.play();
 ...
 
 - Since:
- JavaFX 2.0
- See Also:
- 
Nested Class SummaryNested classes/interfaces declared in class javafx.animation.AnimationAnimation.Status
- 
Property SummaryPropertiesTypePropertyDescriptionfinal DoublePropertySpecifies the incremented stop opacity value, from the start, of thisFadeTransition.final ObjectProperty<Duration> The duration of thisFadeTransition.final DoublePropertySpecifies the start opacity value for thisFadeTransition.final ObjectProperty<Node> The target node of thisTransition.final DoublePropertySpecifies the stop opacity value for thisFadeTransition.Properties declared in class javafx.animation.TransitioninterpolatorProperties declared in class javafx.animation.AnimationautoReverse, currentRate, currentTime, cycleCount, cycleDuration, delay, onFinished, rate, status, totalDuration
- 
Field SummaryFields declared in class javafx.animation.AnimationINDEFINITE
- 
Constructor SummaryConstructorsConstructorDescriptionThe constructor ofFadeTransitionFadeTransition(Duration duration) The constructor ofFadeTransitionFadeTransition(Duration duration, Node node) The constructor ofFadeTransition
- 
Method SummaryModifier and TypeMethodDescriptionfinal DoublePropertySpecifies the incremented stop opacity value, from the start, of thisFadeTransition.final ObjectProperty<Duration> The duration of thisFadeTransition.final DoublePropertySpecifies the start opacity value for thisFadeTransition.final doubleGets the value of thebyValueproperty.final DurationGets the value of thedurationproperty.final doubleGets the value of thefromValueproperty.final NodegetNode()Gets the value of thenodeproperty.final doubleGets the value of thetoValueproperty.protected voidinterpolate(double frac) The methodinterpolate()has to be provided by implementations ofTransition.final ObjectProperty<Node> The target node of thisTransition.final voidsetByValue(double value) Sets the value of thebyValueproperty.final voidsetDuration(Duration value) Sets the value of thedurationproperty.final voidsetFromValue(double value) Sets the value of thefromValueproperty.final voidSets the value of thenodeproperty.final voidsetToValue(double value) Sets the value of thetoValueproperty.final DoublePropertySpecifies the stop opacity value for thisFadeTransition.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 thisTransition.It is not possible to change the target nodeof a runningFadeTransition. If the value ofnodeis changed for a runningFadeTransition, the animation has to be stopped and started again to pick up the new value.- See Also:
 
- 
durationThe duration of thisFadeTransition.It is not possible to change the durationof a runningFadeTransition. If the value ofdurationis changed for a runningFadeTransition, 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:
 
- 
fromValueSpecifies the start opacity value for thisFadeTransition.It is not possible to change fromValueof a runningFadeTransition. If the value offromValueis changed for a runningFadeTransition, the animation has to be stopped and started again to pick up the new value.- Default value:
- Double.NaN
- See Also:
 
- 
toValueSpecifies the stop opacity value for thisFadeTransition.It is not possible to change toValueof a runningFadeTransition. If the value oftoValueis changed for a runningFadeTransition, the animation has to be stopped and started again to pick up the new value.- Default value:
- Double.NaN
- See Also:
 
- 
byValueSpecifies the incremented stop opacity value, from the start, of thisFadeTransition.It is not possible to change byValueof a runningFadeTransition. If the value ofbyValueis changed for a runningFadeTransition, the animation has to be stopped and started again to pick up the new value.- See Also:
 
 
- 
- 
Constructor Details- 
FadeTransition
- 
FadeTransitionThe constructor ofFadeTransition- Parameters:
- duration- The duration of the- FadeTransition
 
- 
FadeTransitionpublic FadeTransition()The constructor ofFadeTransition
 
- 
- 
Method Details- 
setNodeSets the value of thenodeproperty.- Property description:
- The target node of this Transition.It is not possible to change the target nodeof a runningFadeTransition. If the value ofnodeis changed for a runningFadeTransition, the animation has to be stopped and started again to pick up the new value.
- Parameters:
- value- the value for the- nodeproperty
- See Also:
 
- 
getNodeGets the value of thenodeproperty.- Property description:
- The target node of this Transition.It is not possible to change the target nodeof a runningFadeTransition. If the value ofnodeis changed for a runningFadeTransition, the animation has to be stopped and started again to pick up the new value.
- Returns:
- the value of the nodeproperty
- See Also:
 
- 
nodePropertyThe target node of thisTransition.It is not possible to change the target nodeof a runningFadeTransition. If the value ofnodeis changed for a runningFadeTransition, the animation has to be stopped and started again to pick up the new value.- Returns:
- the nodeproperty
- See Also:
 
- 
setDurationSets the value of thedurationproperty.- Property description:
- The duration of this FadeTransition.It is not possible to change the durationof a runningFadeTransition. If the value ofdurationis changed for a runningFadeTransition, 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
- Parameters:
- value- the value for the- durationproperty
- See Also:
 
- 
getDurationGets the value of thedurationproperty.- Property description:
- The duration of this FadeTransition.It is not possible to change the durationof a runningFadeTransition. If the value ofdurationis changed for a runningFadeTransition, 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
- Returns:
- the value of the durationproperty
- See Also:
 
- 
durationPropertyThe duration of thisFadeTransition.It is not possible to change the durationof a runningFadeTransition. If the value ofdurationis changed for a runningFadeTransition, 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
- Returns:
- the durationproperty
- See Also:
 
- 
setFromValuepublic final void setFromValue(double value) Sets the value of thefromValueproperty.- Property description:
- Specifies the start opacity value for this FadeTransition.It is not possible to change fromValueof a runningFadeTransition. If the value offromValueis changed for a runningFadeTransition, the animation has to be stopped and started again to pick up the new value.
- Default value:
- Double.NaN
- Parameters:
- value- the value for the- fromValueproperty
- See Also:
 
- 
getFromValuepublic final double getFromValue()Gets the value of thefromValueproperty.- Property description:
- Specifies the start opacity value for this FadeTransition.It is not possible to change fromValueof a runningFadeTransition. If the value offromValueis changed for a runningFadeTransition, the animation has to be stopped and started again to pick up the new value.
- Default value:
- Double.NaN
- Returns:
- the value of the fromValueproperty
- See Also:
 
- 
fromValuePropertySpecifies the start opacity value for thisFadeTransition.It is not possible to change fromValueof a runningFadeTransition. If the value offromValueis changed for a runningFadeTransition, the animation has to be stopped and started again to pick up the new value.- Default value:
- Double.NaN
- Returns:
- the fromValueproperty
- See Also:
 
- 
setToValuepublic final void setToValue(double value) Sets the value of thetoValueproperty.- Property description:
- Specifies the stop opacity value for this FadeTransition.It is not possible to change toValueof a runningFadeTransition. If the value oftoValueis changed for a runningFadeTransition, the animation has to be stopped and started again to pick up the new value.
- Default value:
- Double.NaN
- Parameters:
- value- the value for the- toValueproperty
- See Also:
 
- 
getToValuepublic final double getToValue()Gets the value of thetoValueproperty.- Property description:
- Specifies the stop opacity value for this FadeTransition.It is not possible to change toValueof a runningFadeTransition. If the value oftoValueis changed for a runningFadeTransition, the animation has to be stopped and started again to pick up the new value.
- Default value:
- Double.NaN
- Returns:
- the value of the toValueproperty
- See Also:
 
- 
toValuePropertySpecifies the stop opacity value for thisFadeTransition.It is not possible to change toValueof a runningFadeTransition. If the value oftoValueis changed for a runningFadeTransition, the animation has to be stopped and started again to pick up the new value.- Default value:
- Double.NaN
- Returns:
- the toValueproperty
- See Also:
 
- 
setByValuepublic final void setByValue(double value) Sets the value of thebyValueproperty.- Property description:
- Specifies the incremented stop opacity value, from the start, of this
 FadeTransition.It is not possible to change byValueof a runningFadeTransition. If the value ofbyValueis changed for a runningFadeTransition, the animation has to be stopped and started again to pick up the new value.
- Parameters:
- value- the value for the- byValueproperty
- See Also:
 
- 
getByValuepublic final double getByValue()Gets the value of thebyValueproperty.- Property description:
- Specifies the incremented stop opacity value, from the start, of this
 FadeTransition.It is not possible to change byValueof a runningFadeTransition. If the value ofbyValueis changed for a runningFadeTransition, the animation has to be stopped and started again to pick up the new value.
- Returns:
- the value of the byValueproperty
- See Also:
 
- 
byValuePropertySpecifies the incremented stop opacity value, from the start, of thisFadeTransition.It is not possible to change byValueof a runningFadeTransition. If the value ofbyValueis changed for a runningFadeTransition, the animation has to be stopped and started again to pick up the new value.- Returns:
- the byValueproperty
- See Also:
 
- 
interpolateprotected 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
 
 
-