import javafx.animation.AnimationTimer;
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.scene.layout.StackPane;
import javafx.scene.text.Font;
import javafx.stage.Stage;
public class AnimationTimerEx extends Application {
private double opacity = 1;
private Label lbl;
public void start(Stage stage) {
initUI(stage);
}
private void initUI(Stage stage) {
StackPane root = new StackPane();
lbl = new Label("Sateesh B");
lbl.setFont(Font.font(48));
root.getChildren().add(lbl);
AnimationTimer timer = new MyTimer();
timer.start();
Scene scene = new Scene(root, 300, 250);
stage.setTitle("AnimationTimer");
stage.setScene(scene);
stage.show();
}
private class MyTimer extends AnimationTimer {
public void handle(long now) {
doHandle();
}
private void doHandle() {
opacity -= 0.01;
lbl.opacityProperty().set(opacity);
if (opacity <= 0) {
stop();
System.out.println("Animation stopped");
}
}
}
public static void main(String[] args) {
launch(args);
}
}
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.scene.layout.StackPane;
import javafx.scene.text.Font;
import javafx.stage.Stage;
public class AnimationTimerEx extends Application {
private double opacity = 1;
private Label lbl;
public void start(Stage stage) {
initUI(stage);
}
private void initUI(Stage stage) {
StackPane root = new StackPane();
lbl = new Label("Sateesh B");
lbl.setFont(Font.font(48));
root.getChildren().add(lbl);
AnimationTimer timer = new MyTimer();
timer.start();
Scene scene = new Scene(root, 300, 250);
stage.setTitle("AnimationTimer");
stage.setScene(scene);
stage.show();
}
private class MyTimer extends AnimationTimer {
public void handle(long now) {
doHandle();
}
private void doHandle() {
opacity -= 0.01;
lbl.opacityProperty().set(opacity);
if (opacity <= 0) {
stop();
System.out.println("Animation stopped");
}
}
}
public static void main(String[] args) {
launch(args);
}
}
No comments:
Post a Comment