Код: Выделить всё
public class JavaFxTest10 extends Application {
@Override
public void start(Stage primaryStage) {
var label = new Label("Hello, world!");
label.setStyle("visibility:visible; transition-property: visibility; transition-duration: 0.5s;");
VBox root = new VBox(label);
Scene scene = new Scene(root, 400, 200);
primaryStage.setTitle("Blinking Example");
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}
Подробнее здесь: https://stackoverflow.com/questions/791 ... -using-css
Мобильная версия