本文整理汇总了Java中javafx.scene.effect.Reflection.setBottomOpacity方法的典型用法代码示例。如果您正苦于以下问题:Java Reflection.setBottomOpacity方法的具体用法?Java Reflection.setBottomOpacity怎么用?Java Reflection.setBottomOpacity使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javafx.scene.effect.Reflection
的用法示例。
在下文中一共展示了Reflection.setBottomOpacity方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: Clavier
import javafx.scene.effect.Reflection; //导入方法依赖的package包/类
public Clavier(Instru instru) {
this.instru = instru;// l'objet de type Instru prend la valeur de l'objet passé en paramètre
Rectangle fond_clavier = new Rectangle();
fond_clavier.setWidth(400);
fond_clavier.setHeight(200);
fond_clavier.setArcWidth(30);
fond_clavier.setArcHeight(30);
fond_clavier.setFill( // on remplie notre rectangle avec un dégradé
new LinearGradient(0f, 0f, 0f, 1f, true, CycleMethod.NO_CYCLE,
new Stop[] { new Stop(0, Color.web("#333333")), new Stop(1, Color.web("#000000")) }));
Reflection r = new Reflection();// on applique un effet de réflection
r.setFraction(0.25);
r.setBottomOpacity(0);
r.setTopOpacity(0.5);
fond_clavier.setEffect(r);
touches = new Touche[] { new Touche("U", 50, 20, 60, instru), new Touche("I", 128, 20, 62, instru),
new Touche("O", 206, 20, 64, instru), new Touche("P", 284, 20, 65, instru),
new Touche("J", 75, 98, 67, instru), new Touche("K", 153, 98, 69, instru),
new Touche("L", 231, 98, 71, instru), new Touche("M", 309, 98, 72, instru) };
this.setTranslateX(50);
this.setTranslateY(250);
this.getChildren().add(fond_clavier);
for (Touche touche : touches) { // on insère chaque touche une par une.
this.getChildren().add(touche);
}
}
示例2: initComponents
import javafx.scene.effect.Reflection; //导入方法依赖的package包/类
@Override
public void initComponents()
{
title = new Label(TITLE);
title.setId("title_3");
msg = new Label(MSG);
msg.setId("msg-inicial");
go = new Button("Go!");
go.setId("dark-blue");
vBox = new VBox();
vBox.setAlignment(Pos.CENTER);
vBox.setSpacing(40);
rightPane = new BorderPane();
rightPane.setPrefSize(PrimaryStage.WIDTH, PrimaryStage.HEIGHT);
rightPane.setMinSize(0, 0);
rightPane.setScaleX(1);
rightPane.setId("fundo-padrao");
leftPane = new BorderPane();
leftPane.setPrefSize(PrimaryStage.WIDTH, PrimaryStage.HEIGHT);
leftPane.setMinSize(0, 0);
leftPane.setScaleX(1);
leftPane.setId("fundo-padrao");
topPane = new BorderPane();
topPane.setPrefSize(PrimaryStage.WIDTH, PrimaryStage.HEIGHT);
topPane.setMinSize(0, 0);
topPane.setScaleX(1);
topPane.setId("fundo-padrao");
downPane = new BorderPane();
downPane.setPrefSize(PrimaryStage.WIDTH, PrimaryStage.HEIGHT);
downPane.setMinSize(0, 0);
downPane.setScaleX(1);
downPane.setId("fundo-padrao");
centerPane = new BorderPane();
centerPane.setPrefSize(PrimaryStage.WIDTH, PrimaryStage.HEIGHT);
centerPane.setMinSize(0, 0);
centerPane.setScaleX(1);
centerPane.setId("fundo-padrao");
centerPane.setCenter(vBox);
final DropShadow drop = new DropShadow
(BlurType.GAUSSIAN, Color.WHITE, 5, 1 , 1, 1);
final Reflection r = new Reflection();
r.setFraction(0.5f);
r.setBottomOpacity(0.5);
drop.setInput(r);
title.setEffect(drop);
vBox.getChildren().addAll(title, msg, go);
getChildren().addAll(downPane, leftPane, topPane, rightPane, centerPane);
}