Uses of Class
javafx.animation.Animation
-
Packages that use Animation Package Description javafx.animation Provides the set of classes for ease of use transition based animations.javafx.scene.chart The JavaFX User Interface provides a set of chart components that are a very convenient way for data visualization. -
-
Uses of Animation in javafx.animation
Subclasses of Animation in javafx.animation Modifier and Type Class Description class
FadeTransition
ThisTransition
creates a fade effect animation that spans itsduration
.class
FillTransition
ThisTransition
creates an animation, that changes the filling of a shape over aduration
.class
ParallelTransition
ThisTransition
plays a list ofAnimations
in parallel.class
PathTransition
ThisTransition
creates a path animation that spans itsduration
.class
PauseTransition
class
RotateTransition
ThisTransition
creates a rotation animation that spans itsduration
.class
ScaleTransition
ThisTransition
creates a scale animation that spans itsduration
.class
SequentialTransition
ThisTransition
plays a list ofAnimations
in sequential order.class
StrokeTransition
ThisTransition
creates an animation, that changes the stroke color of a shape over aduration
.class
Timeline
ATimeline
can be used to define a free form animation of anyWritableValue
, for example, allJavaFX Properties
.class
Transition
An abstract class that contains the basic functionalities required by allTransition
based animations, such asPathTransition
andRotateTransition
.class
TranslateTransition
ThisTransition
creates a move/translate animation that spans itsduration
.Methods in javafx.animation that return types with arguments of type Animation Modifier and Type Method Description ObservableList<Animation>
ParallelTransition. getChildren()
A list ofAnimations
that will be played sequentially.ObservableList<Animation>
SequentialTransition. getChildren()
A list ofAnimations
that will be played sequentially.Constructors in javafx.animation with parameters of type Animation Constructor Description ParallelTransition(Animation... children)
The constructor ofParallelTransition
.ParallelTransition(Node node, Animation... children)
The constructor ofParallelTransition
.SequentialTransition(Animation... children)
The constructor ofSequentialTransition
.SequentialTransition(Node node, Animation... children)
The constructor ofSequentialTransition
. -
Uses of Animation in javafx.scene.chart
Methods in javafx.scene.chart with parameters of type Animation Modifier and Type Method Description protected void
Chart. animate(Animation animation)
Play the given animation on every frame of the animation the chart will be relayed out until the animation finishes.
-