我有一个问题。
我的问题
如何在滑动时将矩形隐藏在按钮下方。我不希望它从按钮的另一侧出来。
package javafxapplication24;
import javafx.animation.TranslateTransition;
import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.fxml.FXMLLoader;
import javafx.geometry.Pos;
import javafx.scene.Group;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.FlowPane;
import javafx.scene.layout.GridPane;
import javafx.scene.paint.Color;
import javafx.scene.shape.Rectangle;
import javafx.stage.Stage;
import javafx.util.Duration;
/**
*
* @author phili_000
*/
public class JavaFXApplication24 extends Application {
public Button by;
@Override
public void start(Stage stage) throws Exception {
FlowPane root = new FlowPane( );
root.setAlignment(Pos.CENTER);
Button butt = new Button("Play");
Rectangle rect = new Rectangle(200,40);
rect.setFill(Color.VIOLET);
TranslateTransition transition = new TranslateTransition(Duration.millis(6000),rect);
Scene scene = new Scene(root,700,700);
transition.setToX(-300);
root.getChildren().addAll(butt,rect);
butt.setOnAction((event) -> {
transition.play();
});
stage.setScene(scene);
stage.show();
}
public static void main(String[] args) {
launch(args);
}
}
我尽力解释,但如果您有任何疑问。或评论我如何改进我的问题。请不要犹豫,点击“添加评论”按钮并将您的想法告诉我。
答案 0 :(得分:0)
首先添加矩形,然后按下按钮:
root.getChildren().addAll(text, butt);