Module javafx.graphics
Package javafx.animation
Provides the set of classes for ease of use transition based animations.
It offers a simple framework for incorporating animations onto an internal
Timeline
. It also provides high level constructs to compose the effects
of multiple animations.
-
Interface Summary Interface Description Interpolatable<T> A value that can be interpolated. -
Class Summary Class Description Animation The classAnimation
provides the core functionality of all animations used in the JavaFX runtime.AnimationTimer The classAnimationTimer
allows to create a timer, that is called in each frame while it is active.FadeTransition ThisTransition
creates a fade effect animation that spans itsduration
.FillTransition ThisTransition
creates an animation, that changes the filling of a shape over aduration
.Interpolator The abstract class defines severalinterpolate
methods, which are used to calculate interpolated values.KeyFrame Defines target values at a specified point in time for a set of variables that are interpolated along aTimeline
.KeyValue Defines a key value to be interpolated for a particular interval along the animation.ParallelTransition ThisTransition
plays a list ofAnimations
in parallel.PathTransition ThisTransition
creates a path animation that spans itsduration
.PauseTransition RotateTransition ThisTransition
creates a rotation animation that spans itsduration
.ScaleTransition ThisTransition
creates a scale animation that spans itsduration
.SequentialTransition ThisTransition
plays a list ofAnimations
in sequential order.StrokeTransition ThisTransition
creates an animation, that changes the stroke color of a shape over aduration
.Timeline ATimeline
can be used to define a free form animation of anyWritableValue
, for example, allJavaFX Properties
.Transition An abstract class that contains the basic functionalities required by allTransition
based animations, such asPathTransition
andRotateTransition
.TranslateTransition ThisTransition
creates a move/translate animation that spans itsduration
. -
Enum Summary Enum Description Animation.Status The possible states forstatus
.PathTransition.OrientationType Specifies the upright orientation ofnode
along thepath
.