JavaFX 效果 - 阴影
此效果会创建具有模糊边缘的指定节点的副本。
包 javafx.scene.effect 中名为 Shadow 的类表示棕褐色调效果。此类包含六个属性,分别是 −
color − 该属性为 Color 类型,表示阴影的颜色。
blur type − 该属性为 BlurType,表示用于模糊阴影的模糊效果的类型。
radius − 该属性为 double 类型,表示阴影模糊内核的半径。
width − 该属性为 double 类型,表示阴影模糊内核的宽度。
height − 该属性为 double 类型,表示阴影模糊内核的高度。
input −此属性属于 Effect 类型,它表示阴影效果的输入。
示例
以下程序是演示 JavaFX 阴影效果的示例。在这里,我们绘制文本"Welcome to Tutorialspoint"和场景中的圆圈。
我们应用阴影效果,模糊类型为高斯,颜色为玫瑰棕色,高度、宽度、半径为 5。
将此代码保存在名为 ShadowEffectExample.java 的文件中。
import javafx.application.Application; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.effect.BlurType; import javafx.scene.effect.Shadow; import javafx.scene.paint.Color; import javafx.scene.shape.Circle; import javafx.stage.Stage; import javafx.scene.text.Font; import javafx.scene.text.FontWeight; import javafx.scene.text.Text; public class ShadowEffectExample extends Application { @Override public void start(Stage stage) { //创建 Text 对象 Text text = new Text(); //为文本设置字体 text.setFont(Font.font(null, FontWeight.BOLD, 40)); //设置文本的位置 text.setX(60); text.setY(50); //设置要嵌入的文本。 text.setText("Welcome to Tutorialspoint"); //设置文本的颜色 text.setFill(Color.DARKSEAGREEN); //绘制圆圈 Circle circle = new Circle(); //设置圆心 circle.setCenterX(300.0f); circle.setCenterY(160.0f); //设置圆半径 circle.setRadius(100.0f); //实例化 Shadow 类 Shadow shadow = new Shadow(); //设置阴影的模糊类型 shadow.setBlurType(BlurType.GAUSSIAN); //设置阴影的颜色 shadow.setColor(Color.ROSYBROWN); //设置阴影的高度 shadow.setHeight(5); //设置阴影的宽度 shadow.setWidth(5); //设置阴影的半径 shadow.setRadius(5); //将阴影效果应用于文本 text.setEffect(shadow); //将阴影效果应用于圆圈 circle.setEffect(shadow); //创建 Group 对象 Group root = new Group(circle, text); //创建场景对象 Scene scene = new Scene(root, 600, 300); //设置舞台(Stage)标题 stage.setTitle("Bloom 效果示例"); //将场景添加到舞台(Stage) stage.setScene(scene); //显示舞台(Stage)内容 stage.show(); } public static void main(String args[]){ launch(args); } }
使用以下命令从命令提示符编译并执行保存的 java 文件。
javac ShadowEffectExample.java java ShadowEffectExample
执行时,上述程序将生成一个 JavaFX 窗口,如下所示。