You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.9 KiB
45 lines
1.9 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import com.jfoenix.controls.JFXButton?>
|
|
<?import javafx.scene.control.*?>
|
|
<?import javafx.scene.effect.Shadow?>
|
|
<?import javafx.scene.image.Image?>
|
|
<?import javafx.scene.image.ImageView?>
|
|
<?import javafx.scene.layout.AnchorPane?>
|
|
<?import javafx.scene.paint.*?>
|
|
<?import javafx.scene.shape.Rectangle?>
|
|
<?import javafx.scene.text.*?>
|
|
<?import java.net.URL?>
|
|
|
|
<AnchorPane fx:id="levelRoot" xmlns:fx="http://javafx.com/fxml/1" id="pane" maxHeight="-Infinity" maxWidth="-Infinity"
|
|
minHeight="-Infinity"
|
|
minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0"
|
|
xmlns="http://javafx.com/javafx/11" fx:controller="controller.TopPlayerController">
|
|
<ImageView fitHeight="600.0" fitWidth="1300" layoutX="133.0" layoutY="150.0" pickOnBounds="true" preserveRatio="true"
|
|
AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0"
|
|
AnchorPane.topAnchor="0.0">
|
|
<Image url="/image/plaine.gif"/>
|
|
</ImageView>
|
|
<JFXButton onMouseClicked="#returnToMenu" layoutX="20.0" layoutY="10.0" prefHeight="30.0" prefWidth="80.0"
|
|
style="-fx-background-color: #EB9C0A;"
|
|
text="Retour" textFill="WHITE">
|
|
<font>
|
|
<Font name="Segoe UI Black" size="13.0"/>
|
|
</font>
|
|
<effect>
|
|
<Shadow/>
|
|
</effect>
|
|
</JFXButton>
|
|
<Rectangle arcHeight="5.0" arcWidth="5.0" height="600.0" layoutX="200" opacity="0.42" stroke="BLACK"
|
|
strokeType="INSIDE" width="500.0"/>
|
|
<ImageView fitHeight="205.0" fitWidth="204.0" layoutX="350.0" layoutY="-4.0" pickOnBounds="true"
|
|
preserveRatio="true">
|
|
<Image url="/image/logo.png"/>
|
|
</ImageView>
|
|
<Label layoutX="387.0" layoutY="160.0" text="Top Players">
|
|
<font>
|
|
<Font name="Segoe UI Black" size="22.0"/>
|
|
</font>
|
|
</Label>
|
|
</AnchorPane>
|