广州北大青鸟计算机职业培训学校
互联网技术培训、软件技术培训、大数据培训、云计算培训、数据分析培训信息网
当前位置:网站首页 > 软件教程 > Java技术 > 正文

惠州如何创建JavaFX效果链?_北大青鸟IT学校

作者:邓华发布时间:2021-05-21分类:Java技术浏览:845


导读:大家在学习Java的过程都会遇到各种各样的问题,例如:如何创建JavaFX效果链?那么下面我们一起来看看惠州北大青鸟学术部老师是怎么回答的。

大家在学习Java的过程都会遇到各种各样的问题,例如:如何创建JavaFX效果链?那么下面我们一起来看看惠州北大青鸟学术部老师是怎么回答的。

import javafx.application.Application;import javafx.scene.Scene;import javafx.scene.effect.DropShadow;import javafx.scene.effect.Reflection;import javafx.scene.layout.HBox;import javafx.scene.paint.Color;import javafx.scene.text.Font;import javafx.scene.text.FontWeight;import javafx.scene.text.Text;import javafx.stage.Stage;public class Main extends Application {  public static void main(String[] args) throws Exception {
   launch(args);
 }
 @Override  public void start(final Stage stage) throws Exception {
   Text t = new Text();
   t.setX(20.0f);
   t.setY(80.0f);
   t.setText("www.w3cschool.cn");
   t.setFill(Color.RED);
   t.setFont(Font.font("Arial", FontWeight.BOLD, 60));
   
   DropShadow ds = new DropShadow();
   ds.setOffsetY(5.0);
   ds.setOffsetX(5.0);
   ds.setColor(Color.GRAY);
   
   Reflection reflection = new Reflection();

   ds.setInput(reflection);  
   
   t.setEffect(ds);

   t.setTranslateX(10);
   t.setTranslateY(150);

   HBox box = new HBox();
   box.getChildren().add(t);

   Scene scene = new Scene(box, 400, 450);
   stage.setScene(scene);
   stage.show();
 }
}

上面的代码生成以下结果。

JavaFX效果图10.png

想了解更多关于Java的知识,联系在线客服,或者来惠州北大青鸟新方舟校区了解一下。

标签:惠州计算机JAVA软件开发惠州计算机Java软件开发惠州计算机JAVA培训惠州计算机JAVA软件开发学校惠州计算机Java软件开发培训JAVAJava软件开发北大青鸟IT计算机学校北大青鸟IT软件学校北大青鸟IT学校


Java技术排行
标签列表
网站分类
文章归档
最近发表