本文整理匯總了Java中javafx.scene.Parent.setTranslateY方法的典型用法代碼示例。如果您正苦於以下問題:Java Parent.setTranslateY方法的具體用法?Java Parent.setTranslateY怎麽用?Java Parent.setTranslateY使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類javafx.scene.Parent
的用法示例。
在下文中一共展示了Parent.setTranslateY方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: handleApplicationNotification
import javafx.scene.Parent; //導入方法依賴的package包/類
@Override public void handleApplicationNotification(PreloaderNotification info) {
if (info instanceof PreloaderHandoverEvent) {
// handover from preloader to application
final PreloaderHandoverEvent event = (PreloaderHandoverEvent)info;
final Parent appRoot = event.getRoot();
// remove race track
root.getChildren().remove(raceTrack);
// stop simulating progress
simulatorTimeline.stop();
// apply application stylsheet to scene
preloaderScene.getStylesheets().setAll(event.getCssUrl());
// enable caching for smooth fade
appRoot.setCache(true);
// make hide appRoot then add it to scene
appRoot.setTranslateY(preloaderScene.getHeight());
root.getChildren().add(1,appRoot);
// animate fade in app content
Timeline fadeOut = new Timeline();
fadeOut.getKeyFrames().addAll(
new KeyFrame(
Duration.millis(1000),
new KeyValue(appRoot.translateYProperty(), 0, Interpolator.EASE_OUT)
),
new KeyFrame(
Duration.millis(1500),
new EventHandler<ActionEvent>() {
@Override public void handle(ActionEvent t) {
// turn off cache as not need any more
appRoot.setCache(false);
// done animation so start loading data
for (Runnable task: event.getDataLoadingTasks()) {
Platform.runLater(task);
}
}
}
)
);
fadeOut.play();
}
}