Created
August 31, 2013 00:29
-
-
Save jewelsea/6395481 to your computer and use it in GitHub Desktop.
Boostrap style striped progress bar in JavaFX
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.progress-bar > .bar { | |
-fx-background-color: linear-gradient( | |
from 0px .75em to .75em 0px, | |
repeat, | |
-fx-accent 0%, | |
-fx-accent 49%, | |
derive(-fx-accent, 30%) 50%, | |
derive(-fx-accent, 30%) 99% | |
); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javafx.animation.*; | |
import javafx.application.Application; | |
import javafx.event.*; | |
import javafx.geometry.Insets; | |
import javafx.geometry.Pos; | |
import javafx.scene.Scene; | |
import javafx.scene.control.*; | |
import javafx.scene.layout.VBox; | |
import javafx.stage.Stage; | |
import javafx.util.Duration; | |
/** Displays progress on a striped progress bar */ | |
public class StripedProgress extends Application { | |
public static void main(String[] args) { launch(args); } | |
@Override public void start(final Stage stage) { | |
ProgressBar bar = new ProgressBar(0); | |
bar.setPrefSize(200, 24); | |
Timeline task = new Timeline( | |
new KeyFrame( | |
Duration.ZERO, | |
new KeyValue(bar.progressProperty(), 0) | |
), | |
new KeyFrame( | |
Duration.seconds(2), | |
new KeyValue(bar.progressProperty(), 1) | |
) | |
); | |
Button button = new Button("Go!"); | |
button.setOnAction(new EventHandler<ActionEvent>() { | |
@Override public void handle(ActionEvent actionEvent) { | |
task.playFromStart(); | |
} | |
}); | |
VBox layout = new VBox(10); | |
layout.getChildren().setAll( | |
bar, | |
button | |
); | |
layout.setPadding(new Insets(10)); | |
layout.setAlignment(Pos.CENTER); | |
layout.getStylesheets().add( | |
getClass().getResource( | |
"striped-progress.css" | |
).toExternalForm() | |
); | |
stage.setScene(new Scene(layout)); | |
stage.show(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Answer to StackOverflow question: ProgressBar Animated JavaFX
This solution displays a progress bar with static stripes, not animated stripes.