×

JavaFX Parallel Transition

In the JavaFX application, in order to generate the parallel transition, we have to apply parallel transition on any particular shape. It has the ability to execute multiple transactions parallelly. All methods needed for this purpose are present in the javafx.animation.ParallelTransition class.

JavaFX Animation - Parallel Transition

Example:

import javafx.animation.Interpolator;
import javafx.animation.ParallelTransition;
import javafx.animation.Transition;
import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.paint.Color;
import javafx.scene.shape.Circle;
import javafx.stage.Stage;
import javafx.util.Duration;


public class AnimationUI extends Application {  


    @Override  
    public void start(Stage stage) throws Exception 
    { 
    
            Circle newball1 = new Circle(0,0,20);
            newball1.setFill(Color.RED);
            Circle newball2 = new Circle(0,0,20);
            newball2.setFill(Color.BLUE);
            
            Group root = new Group();
            root.getChildren().addAll(newball1, newball2);
            Scene scene = new Scene(root, 600, 600);
            stage.setScene(scene);
            stage.setTitle("Javafx Parallel transition example");
            stage.show(); 
            
            TranslateTransition newt1 = new TranslateTransition(
            Duration.millis(2000), newball1);
            newt1.setFromX(newball1.getRadius());
            newt1.setToX(scene.getWidth() - newball1.getRadius());
            newt1.setFromY(scene.getHeight() / 3);
            newt1.setToY(scene.getHeight() / 3);
            newt1.setCycleCount(Transition.INDEFINITE);
            newt1.setAutoReverse(true);
            newt1.setInterpolator(Interpolator.LINEAR);


            
            TranslateTransition newt2 = new TranslateTransition(
                Duration.millis(2000), newball2);
            newt2.setFromX(scene.getWidth() - newball2.getRadius());
            newt2.setToX(newball2.getRadius());
            newt2.setFromY(scene.getHeight() / 3 * 2);
            newt2.setToY(scene.getHeight() / 3 * 2);
            newt2.setCycleCount(Transition.INDEFINITE);
            newt2.setAutoReverse(true);
            newt2.setInterpolator(Interpolator.LINEAR);


            
            ParallelTransition pt = new ParallelTransition(newt1, newt2);
            pt.play();
            
            
     }
      
    public static void main(String[] args) {  
        launch(args);  
    }  
}

Output:

In order to create the parallel Transition in JavaFX, we have to import all the required libraries such as javafx.animation.TranslateTransition, javafx.animation.ParallelTransition, javafx.animation.PauseTransition, javafx.application.Application, javafx.scene.Group, javafx.scene.Scene, javafx.scene.paint.Color, javafx.scene.shape.Circle, javafx.stage.Stage, javafx.util.Duration.

Then we have created one class named AnimationUI extending the Application class. Also, we have to override the start method to provide implementation details. This method creates an object of Stage as primaryStage. For the container to hold a parallel transition on balls, a Group object is created which is then passed to the Scene class object.

The circle is created with the help of the constructor and the size parameter and red and blue color to be filled are passed in it. A Parallel Transition object is created and using setters various properties are set. Then it will show parallel transitions on circle shaped balls.

The stage is prepared, the title is set and the show() method is called to display output. In order to run the application, the launch(args) method is called in the main() method. In output Frame like container is displayed with the title, " JavaFX Parallel Transition Example”. Also, it displays one red and one blue ball translating from one place to another simultaneously.

JavaFX Animation - Parallel Transition JavaFX Animation - Parallel Transition

JavaFX Animation - Parallel Transition

Example:

import javafx.animation.FadeTransition;
import javafx.animation.ParallelTransition;
import javafx.animation.ScaleTransition;
import javafx.animation.TranslateTransition;
import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.paint.Color;
import javafx.scene.shape.Rectangle;
import javafx.stage.Stage;
import javafx.util.Duration;


public class SliderUI extends Application {  


    @Override  
    public void start(Stage stage) throws Exception 
    { 
   
    Rectangle newcir = new Rectangle(140,140,100,100);     
    newcir.setStroke(Color.BLUE);  
    newcir.setFill(Color.RED);  
    newcir.setStrokeWidth(20);  
          
       Duration dur1 = Duration.millis(1000);  
         
           
           FadeTransition fade = new FadeTransition();  
           
           
           fade.setDuration(Duration.millis(3000));  
             
           fade.setFromValue(10);  
           fade.setToValue(0.1);  
             
           fade.setCycleCount(1000);  


             


         
         ScaleTransition scale = new ScaleTransition(dur1);  
         scale.setByX(1.5f);
         scale.setByY(1.5f);
         scale.setAutoReverse(true);




           
         ParallelTransition seqT = new ParallelTransition (newcir,scale, fade);  
           
         seqT.play();  
       
        Group root = new Group();  
        root.getChildren().addAll(newcir);  
         Scene scene = new Scene(root,500,450);  
         stage.setScene(scene);  
        stage.setTitle("JavaFx Parallel Transition example");  
         stage.show();  
     }
      
    public static void main(String[] args) {  
        launch(args);  
    }  
}

Output:

In order to create the parallel Transition in JavaFX, we have to import all the required libraries such as javafx.animation.ScaleTransition, javafx.animation.ParallelTransition, javafx.animation.FadeTransition, javafx.application.Application, javafx.scene.Group, javafx.scene.Scene, javafx.scene.paint.Color, javafx.scene.shape.Rectangle, javafx.stage.Stage, javafx.util.Duration.

Then we have created one class named AnimationUI extending the Application class. Also, we have to override the start method to provide implementation details. This method creates an object of Stage as primaryStage. For the container to hold a parallel transition on the rectangle, a Group object is created which is then passed to the Scene class object.

The rectangle is created with the help of the constructor and the size parameter and red color to be filled are passed in it. A Parallel Transition object is created and using setters various properties are set. Then it will show parallel transitions on the rectangle.

The stage is prepared, the title is set and the show() method is called to display output. In order to run the application, the launch(args) method is called in the main() method. In output Frame like container is displayed with the title, " JavaFX Parallel Transition Example”. Also, it displays one rectangle scaling and fading simultaneously.

JavaFX Animation - Parallel Transition

Related Topics

JavaFX Scatter Chart

In the JavaFX application, in order to create Scatter Chart, the ScatterChart class is used. The Scatter Chart allows us to plot data along the x and y axis of...

4 minutes read.

JavaFX Sequential Transition

In the JavaFX application, in order to generate the sequential transition, we have to apply sequential transition on any particular shape. It has the ability to execute multiple transactions sequentially...

4 minutes read.

JavaFX TilePane

In the JavaFX application, in order to set TilePane as a layout, the TilePane class is used. The TilePane layout allows us to arrange the components in the same sized...

4 minutes read.

JavaFX Scale Transition

In the JavaFX application, in order to generate the scale transition, we have to apply scale transition on any particular shape. It has the ability to scale the shape along...

4 minutes read.

JavaFX Color

In the JavaFX application, in order to draw any shape, we are using classes present in the javafx.scene.shape package. We can fill the colors in these shapes using the setFill()...

6 minutes read.

JavaFX Sphere

In the JavaFX application, in order to draw a Sphere, the Sphere class is used. The Sphere allows us to form a 3D shape having circular faces. All methods needed...

4 minutes read.

JavaFX Scaling

In the JavaFX application, in order to apply various Scaling effects, we use this class. It has the ability to change the size of the given object. All methods needed...

5 minutes read.

JavaFX Pause Transition

In the JavaFX application, in order to generate the pause transition, we have to apply pause transition on any particular shape. It has the ability to take a particular pause...

4 minutes read.

JavaFX Translation

In the JavaFX application, in order to apply various Translate effect, we use this class. It has the ability to Translate the given object according to the specified parameter. All...

4 minutes read.

JavaFX Color Adjust

In the JavaFX application, in order to apply various color adjust effect, we use ColorAdjust class. It has the ability to apply various color adjust effect such as hue, saturation,...

5 minutes read.

JavaFX Button

The button is one of the UI control present in the JavaFX. The javafx.scene.control.Button class is used for creating a button in javafx example. It is also possible to create...

5 minutes read.

JavaFX Ellipse

In the JavaFX application, in order to draw an Ellipse, the Ellipse class is used. The Ellipse allows us to join any points in the space to draw the unique...

7 minutes read.

JavaFX Gaussian Blur

In the JavaFX application, in order to apply various Gaussian blur effect, we use GaussianBlur class. It has the ability to apply blur effect on the given object. All methods...

4 minutes read.

JavaFX PasswordField

In the JavaFX application, to get the user information and password as input from the user, a form is created using textfields and password fields which allows the user to...

4 minutes read.

JavaFX TextField

In the JavaFX application, to get the user information as input from the user, a form is created using textfields which allows the user to enter input for specific fields....

4 minutes read.

JavaFX Bubble Chart

In the JavaFX application, in order to create Bubble Chart, the BubbleChart class is used. The Bubble Chart allows us to plot three dimensional data. All methods needed for this...

4 minutes read.

JavaFX Fade Transition

In the JavaFX application, in order to generate the fade transition, we have to apply fade transition on any particular shape. It has the ability to show the fading colors...

4 minutes read.

JavaFX Transformation

In the JavaFX application, in order to apply various transformation effects, we use Transform class. It has the ability to create the transformation on the given object. This transformation changes...

3 minutes read.

JavaFX Shadow

In the JavaFX application, in order to apply various Shadow effect from a single source, we use this class. It has the ability to create the shadow of the given...

3 minutes read.

JavaFX Rectangle

In the JavaFX application, in order to draw a rectangle, the Rectangle class is used. The Rectangle allows us to join any four points with x and y coordinates in...

4 minutes read.