我可以通过css将背景图像添加到JavaFx中的节点,如下所示:
.backgroundImage {
-fx-background-image: url("../Image.png");
-fx-background-size: 100 100;
-fx-background-position: 0 0;
-fx-background-repeat: no-repeat;
}
有没有办法可以在一个节点上添加多个背景图片?任何方式都可以,即使不在CSS中。
答案 0 :(得分:1)
这有效:
.backgroundImages {
-fx-background-image: url("../Image1.png"), url("../Image2.png");
-fx-background-size: 246 1, 6 11;
-fx-background-position: 0 0, 4 center;
-fx-background-repeat: no-repeat;
}