- java.lang.Object
- 
- javafx.animation.Animation
- 
- javafx.animation.Transition
- 
- javafx.animation.FadeTransition
 
 
 
- 
 
 public final class FadeTransition extends Transition ThisTransitioncreates a fade effect animation that spans itsduration. This is done by updating theopacityvariable of thenodeat regular interval.It starts from the fromValueif provided else uses thenode'sopacityvalue.It stops at the toValuevalue if provided else it will use start value plusbyValue.The toValuetakes precedence if bothtoValueandbyValueare 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:
- Transition,- Animation
 
- 
- 
Property SummaryProperties Type Property Description DoublePropertybyValueSpecifies the incremented stop opacity value, from the start, of thisFadeTransition.ObjectProperty<Duration>durationThe duration of thisFadeTransition.DoublePropertyfromValueSpecifies the start opacity value for thisFadeTransition.ObjectProperty<Node>nodeThe target node of thisTransition.DoublePropertytoValueSpecifies the stop opacity value for thisFadeTransition.- 
Properties inherited from class javafx.animation.AnimationautoReverse, currentRate, currentTime, cycleCount, cycleDuration, delay, onFinished, rate, status, totalDuration
 - 
Properties inherited from class javafx.animation.Transitioninterpolator
 
- 
 - 
Nested Class Summary- 
Nested classes/interfaces inherited from class javafx.animation.AnimationAnimation.Status
 
- 
 - 
Field Summary- 
Fields inherited from class javafx.animation.AnimationINDEFINITE
 
- 
 - 
Constructor SummaryConstructors Constructor Description FadeTransition()The constructor ofFadeTransitionFadeTransition(Duration duration)The constructor ofFadeTransitionFadeTransition(Duration duration, Node node)The constructor ofFadeTransition
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description DoublePropertybyValueProperty()Specifies the incremented stop opacity value, from the start, of thisFadeTransition.ObjectProperty<Duration>durationProperty()The duration of thisFadeTransition.DoublePropertyfromValueProperty()Specifies the start opacity value for thisFadeTransition.doublegetByValue()Gets the value of the property byValue.DurationgetDuration()Gets the value of the property duration.doublegetFromValue()Gets the value of the property fromValue.NodegetNode()Gets the value of the property node.doublegetToValue()Gets the value of the property toValue.protected voidinterpolate(double frac)The methodinterpolate()has to be provided by implementations ofTransition.ObjectProperty<Node>nodeProperty()The target node of thisTransition.voidsetByValue(double value)Sets the value of the property byValue.voidsetDuration(Duration value)Sets the value of the property duration.voidsetFromValue(double value)Sets the value of the property fromValue.voidsetNode(Node value)Sets the value of the property node.voidsetToValue(double value)Sets the value of the property toValue.DoublePropertytoValueProperty()Specifies the stop opacity value for thisFadeTransition.- 
Methods inherited from 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
 - 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from class javafx.animation.TransitiongetCachedInterpolator, getInterpolator, getParentTargetNode, interpolatorProperty, setInterpolator
 
- 
 
- 
- 
- 
Property Detail- 
nodepublic final ObjectProperty<Node> nodeProperty The 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:
- getNode(),- setNode(Node)
 
 - 
durationpublic final ObjectProperty<Duration> durationProperty The 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:
- getDuration(),- setDuration(Duration)
 
 - 
fromValuepublic final DoubleProperty fromValueProperty Specifies 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:
- getFromValue(),- setFromValue(double)
 
 - 
toValuepublic final DoubleProperty toValueProperty Specifies 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:
- getToValue(),- setToValue(double)
 
 - 
byValuepublic final DoubleProperty byValueProperty Specifies 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:
- getByValue(),- setByValue(double)
 
 
- 
 - 
Constructor Detail- 
FadeTransitionpublic FadeTransition(Duration duration, Node node) The constructor ofFadeTransition- Parameters:
- duration- The duration of the- FadeTransition
- node- The- nodewhich opacity will be animated
 
 - 
FadeTransitionpublic FadeTransition(Duration duration) The constructor ofFadeTransition- Parameters:
- duration- The duration of the- FadeTransition
 
 - 
FadeTransitionpublic FadeTransition() The constructor ofFadeTransition
 
- 
 - 
Method Detail- 
setNodepublic final void setNode(Node value) Sets the value of the property node.- 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.
 
 - 
getNodepublic final Node getNode() Gets the value of the property node.- 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.
 
 - 
nodePropertypublic final ObjectProperty<Node> nodeProperty() The 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:
- getNode(),- setNode(Node)
 
 - 
setDurationpublic final void setDuration(Duration value) Sets the value of the property duration.- 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
 
 - 
getDurationpublic final Duration getDuration() Gets the value of the property duration.- 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
 
 - 
durationPropertypublic final ObjectProperty<Duration> durationProperty() The 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:
- getDuration(),- setDuration(Duration)
 
 - 
setFromValuepublic final void setFromValue(double value) Sets the value of the property fromValue.- 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
 
 - 
getFromValuepublic final double getFromValue() Gets the value of the property fromValue.- 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
 
 - 
fromValuePropertypublic final DoubleProperty fromValueProperty() Specifies 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:
- getFromValue(),- setFromValue(double)
 
 - 
setToValuepublic final void setToValue(double value) Sets the value of the property toValue.- 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
 
 - 
getToValuepublic final double getToValue() Gets the value of the property toValue.- 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
 
 - 
toValuePropertypublic final DoubleProperty toValueProperty() Specifies 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:
- getToValue(),- setToValue(double)
 
 - 
setByValuepublic final void setByValue(double value) Sets the value of the property byValue.- 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.
 
 - 
getByValuepublic final double getByValue() Gets the value of the property byValue.- 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.
 
 - 
byValuePropertypublic final DoubleProperty byValueProperty() Specifies 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:
- getByValue(),- setByValue(double)
 
 - 
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
 
 
- 
 
-