JavaFX - 旋转转换



JavaFX 中的动画可以应用于更改对象的几何形状、属性、位置等。旋转转换用于通过保留对象的形状和属性来处理其位置。

对象在其中心点枢转并围绕其旋转。这种类型的动画称为旋转转换。各种软件允许您通过旋转对象来将其应用于对象,同时显示该对象。

这种类型的动画可以在对象进入应用程序或退出应用程序时应用。

JavaFX 中的旋转转换

JavaFX 中的旋转转换是使用javafx.animation包中的RotateTransition类应用的。这是通过指定转换的起始值、结束值和持续时间来完成的。RotateTransition 类具有以下属性:

  • axis - 指定此 RotateTransition 的旋转轴。

  • node - 此 RotateTransition 的目标节点。

  • byAngle - 指定此 RotateTransition 从起始位置开始递增的停止角度值。

  • fromAngle - 指定此 RotateTransition 的起始角度值。

  • toAngle - 指定此 RotateTransition 的停止角度值。

  • duration - 此 RotateTransition 的持续时间。

示例

以下是演示 JavaFX 中旋转转换的程序。将此代码保存在名为RotateTransitionExample.java的文件中。

import javafx.animation.RotateTransition; 
import javafx.application.Application; 
import static javafx.application.Application.launch; 
import javafx.scene.Group; 
import javafx.scene.Scene; 
import javafx.scene.paint.Color; 
import javafx.scene.shape.Polygon; 
import javafx.stage.Stage; 
import javafx.util.Duration; 
         
public class RotateTransitionExample extends Application { 
   @Override 
   public void start(Stage stage) {      
      //Creating a hexagon 
      Polygon hexagon = new Polygon();        
      
      //Adding coordinates to the hexagon 
      hexagon.getPoints().addAll(new Double[]{        
         200.0, 50.0, 
         400.0, 50.0, 
         450.0, 150.0,          
         400.0, 250.0, 
         200.0, 250.0,                   
         150.0, 150.0, 
      }); 
      //Setting the fill color for the hexagon 
      hexagon.setFill(Color.BLUE); 
       
      //Creating a rotate transition    
      RotateTransition rotateTransition = new RotateTransition(); 
      
      //Setting the duration for the transition 
      rotateTransition.setDuration(Duration.millis(1000)); 
      
      //Setting the node for the transition 
      rotateTransition.setNode(hexagon);       
      
      //Setting the angle of the rotation 
      rotateTransition.setByAngle(360); 
      
      //Setting the cycle count for the transition 
      rotateTransition.setCycleCount(50); 
      
      //Setting auto reverse value to false 
      rotateTransition.setAutoReverse(false); 
      
      //Playing the animation 
      rotateTransition.play(); 
         
      //Creating a Group object   
      Group root = new Group(hexagon); 
         
      //Creating a scene object 
      Scene scene = new Scene(root, 600, 300);   
      
      //Setting title to the Stage 
      stage.setTitle("Rotate transition example "); 
         
      //Adding scene to the stage 
      stage.setScene(scene); 
         
      //Displaying the contents of the stage 
      stage.show(); 
   }      
   public static void main(String args[]){ 
      launch(args); 
   } 
} 

使用以下命令从命令提示符编译并执行保存的 java 文件。

javac --module-path %PATH_TO_FX% --add-modules javafx.controls RotateTransitionExample.java 
java --module-path %PATH_TO_FX% --add-modules javafx.controls RotateTransitionExample

输出

执行后,上述程序将生成如下所示的 JavaFX 窗口。

Rotate Transition
广告