JavaFX - 反射效果



反射在科学上被定义为当光线照射到表面(称为反射面,如镜子)时发生的一种现象,光线会被反射回来。在这种情况下,这些光波路径上的所有物体也会被投影回作为图像。您也可以在 JavaFX 应用程序中应用此反射效果。

在 JavaFX 中对节点应用反射效果时,会在节点底部添加其反射。

名为Reflection的类,位于javafx.scene.effect包中,表示反射效果。此类包含四个属性,它们是:

  • topOpacity - 此属性为双精度类型,表示反射顶部边缘的不透明度值。

  • bottomOpacity - 此属性为双精度类型,表示反射底部边缘的不透明度值。

  • input - 此属性为 Effect 类型,表示反射效果的输入。

  • topOffset - 此属性为双精度类型,表示输入底部和反射顶部之间的距离。

  • fraction - 此属性为双精度类型,表示输出中可见的输入部分。fraction 值的范围是 0.0 到 1.0。

示例

以下程序是一个演示反射效果的示例。在这里,我们绘制了文本“Welcome to Tutorialspoint”,并填充了 DARKSEAGREEN 颜色,并对其应用了反射效果。

将此代码保存在名为ReflectionEffectExample.java的文件中。

import javafx.application.Application; 
import javafx.scene.Group; 
import javafx.scene.Scene; 
import javafx.scene.effect.Reflection; 
import javafx.scene.paint.Color; 
import javafx.stage.Stage; 
import javafx.scene.text.Font; 
import javafx.scene.text.FontWeight; 
import javafx.scene.text.Text; 
         
public class ReflectionEffectExample extends Application { 
   @Override 
   public void start(Stage stage) {       
      //Creating a Text object 
      Text text = new Text();       
      
      //Setting font to the text 
      text.setFont(Font.font(null, FontWeight.BOLD, 40));       
      
      //setting the position of the text 
      text.setX(60); 
      text.setY(150); 
      
      //Setting the text to be embedded. 
      text.setText("Welcome to Tutorialspoint");       
      
      //Setting the color of the text 
      text.setFill(Color.DARKSEAGREEN);  
       
      //Instanting the reflection class 
      Reflection reflection = new Reflection(); 
      
      //setting the bottom opacity of the reflection 
      reflection.setBottomOpacity(0.0); 
      
      //setting the top opacity of the reflection 
      reflection.setTopOpacity(0.5); 
      
      //setting the top offset of the reflection 
      reflection.setTopOffset(0.0);
      
      //Setting the fraction of the reflection 
      reflection.setFraction(0.7); 
       
      //Applying reflection effect to the text 
      text.setEffect(reflection);          
         
      //Creating a Group object  
      Group root = new Group(text);   
               
      //Creating a scene object 
      Scene scene = new Scene(root, 600, 300);  
      
      //Setting title to the Stage 
      stage.setTitle("Reflection effect 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 ReflectionEffectExample.java 
java --module-path %PATH_TO_FX% --add-modules javafx.controls ReflectionEffectExample   

输出

执行上述程序后,会生成一个 JavaFX 窗口,如下所示。

Reflection Effect
广告