2

情况

我正在使用 BackgroundImage 为 JavaFX 区域设置背景,如下所示:

region.setBackground(Background(BackgroundImage(Image(url)), BackgroundRepeat.NO_REPEAT, BackgroundRepeat.NO_REPEAT, BackgroundPosition.CENTER, BackgroundSize(100.0, 100.0, true, true, true, true))))

问题

我想以某种方式使背景变暗,以便白色字体保持可读性。

我试过的

我已经搜索了 Image、BackgroundImage 和 Background,但没有任何方法可以添加效果。我发现我可以直接向 Region 添加效果,但是当我添加 ColorAdjust 时,它会使所有内容变暗,而不仅仅是背景。

我真的不在乎它设置在哪一层,它甚至可以在 CSS 中,我只是想以某种方式使 BackgroundImage 变暗。

4

1 回答 1

1

当您将 anEffect应用于节点时,它会影响其所有子节点(如果有的话)。您也不能将 an 专门应用于Effecta Background,因为它没有提供任何 API 来执行此操作1。相反,您可以做的是有一个单独Region的用于您的背景图像,然后将它和您的其他内容放在一个共同的父级中。然后,您可以将 应用Effect到这个“背景区域”并且只影响它,而不影响任何其他节点。适合这种情况的父级是 a StackPane,因为它会将您的其他内容堆叠在“背景区域”之上;它还将调整区域的大小以填充所有可用空间(使其有效地成为背景图像)。

// Can also apply background through CSS or FXML. Same with the
// effect, though only DropShadow and InnerShadow can be set through
// CSS—any effect can be set though FXML.
Region backgroundRegion = new Region();
backgroundRegion.setBackground(new Background(new BackgroundImage(...)));
backgroundRegion.setEffect(new ColorAdjust(...));

Node otherContent = ...;

StackPane parent = new StackPane(backgroundRegion, otherContent);
// add "parent" to scene graph...

请注意,我会Region像上面一样使用 a ,而不是 a ,ImageView因为前者将保留背景图像的行为;ImageView用一个(至少在我的经验中)模仿背景图像并不容易。


1. 这适用于代码、CSS 和 FXML。请注意,CSS 和 FXML 只是创建Background对象的替代方法。

于 2019-06-17T22:04:53.763 回答