本文概述
- 属性
- 构造函数
【JavaFX StrokeTransition】在JavaFX中, 类javafx.animation.FillTransition表示填充过渡。我们需要实例化此类以创建适当的Fill Transition。
属性 下表描述了该类的属性以及setter方法。
属性 | 描述 | 设置方法 |
---|---|---|
duration | 这是Duration类的对象类型属性。它代表笔画过渡的持续时间。 | setDuration(Duration duration) |
fromValue | 这是一种颜色类型属性。它代表笔画过渡的颜色初始值。 | setFromValue(Color value) |
shape | 这是Shape类的对象类型属性。它代表将在其上应用笔触过渡的形状。 | setShape(Shape shape) |
toValue | 这是颜色类型属性。它代表笔划过渡的颜色目标值。 | setToValue(Color value) |
- public StokeTransition():使用默认参数创建StrokeTransition的新实例。
- public StokeTransition(Duration duration):使用指定的持续时间值创建Stroke Transition的新实例
- 公共StokeTransition(持续时间, Color fromValue, Color toValue):使用指定的持续时间, 颜色的初始值和颜色的目标值创建StrokeTransition的新实例。
- public StokeTransition(Duration duration, Shape shape):使用指定的持续时间和要应用过渡的形状创建StrokeTransition的新实例。
- 5public StokeTransition(持续时间, 形状, 颜色fromValue, Color toValue):使用指定的持续时间, 形状, 颜色的初始值和颜色的目标值创建StrokeTransition的新实例。
在以下示例中, 圆圈的笔划从黑色变为紫色。
package application;
import javafx.animation.StrokeTransition;
import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.paint.Color;
import javafx.scene.shape.Circle;
import javafx.stage.Stage;
import javafx.util.Duration;
public class Stroke_Transition extends Application{
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage primaryStage) throws Exception {
// TODO Auto-generated method stub
//Creating Circle
Circle cir = new Circle(200, 150, 100);
//Setting stroke and color for the circle
cir.setStroke(Color.BLUE);
cir.setFill(Color.RED);
cir.setStrokeWidth(10);
//Instantiating StrokeTransition class
StrokeTransition stroke = new StrokeTransition();
//The transition will set to be auto reserved by setting this to true
stroke.setAutoReverse(true);
//setting cycle count for the Stroke transition
stroke.setCycleCount(500);
//setting duration for the Stroke Transition
stroke.setDuration(Duration.millis(500));
//setting the Initial from value of the Stroke color
stroke.setFromValue(Color.BLACK);
//setting the target value of the Stroke color
stroke.setToValue(Color.PURPLE);
//setting polygon as the shape onto which the Stroke transition will be applied
stroke.setShape(cir);
//playing the Stroke transition
stroke.play();
//Configuring Group and Scene
Group root = new Group();
root.getChildren().addAll(cir);
Scene scene = new Scene(root, 420, 300, Color.WHEAT);
primaryStage.setScene(scene);
primaryStage.setTitle("Stroke Transition example");
primaryStage.show();
}
}
输出:
文章图片
推荐阅读
- JavaFX工具提示
- 其他|甲骨文谷歌继续打官司(美最高法院同意复审 Java API 版权诉讼案)
- 资讯|Java 8被抛弃,甲骨文份额萎缩超一半,2022年Java生态报告出炉
- 编程语言|甲骨文Java 14来啦!
- Android Studio Build APK没有报错,但是Generate signed apk报错
- Appium 搭建环境
- Application,Service,Broadcast类
- Android N(7.0) 在ListView里显示EditText时软键盘弹出时会自动切换到全键盘的问题?
- Express application generator的使用