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

惠州JavaFX效果中的运动模糊是什么?_北大青鸟IT学校

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


导读:JavaFX效果中的运动模糊是什么?这是大家在学习Java的过程都会遇到的问题,那么下面我们一起来看看惠州北大青鸟学术部老师是怎么解答的。

JavaFX效果中的运动模糊是什么?这是大家在学习Java的过程都会遇到的问题,那么下面我们一起来看看惠州北大青鸟学术部老师是怎么解答的。

使用运动模糊,我们可以配置半径和角度来创建移动对象的效果。

import javafx.application.Application;import javafx.scene.Scene;import javafx.scene.effect.MotionBlur;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("Motion Blur");
   t.setFill(Color.RED);
   t.setFont(Font.font("Arial", FontWeight.BOLD, 60));

   MotionBlur mb = new MotionBlur();
   mb.setRadius(15.0f);
   mb.setAngle(45.0f);

   t.setEffect(mb);

   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效果图5.png

想了解更多关于Java的资讯,可以来惠州北大青鸟新方舟校区了解一下。

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


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