进度条大小

时间:2014-05-04 18:06:21

标签: javafx javafx-2 javafx-8

我正在使用此cs代码在JavaFX中设置进度条的颜色。

.progress-bar > .bar {
    -fx-accent: black;
    -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%
        );
}

我有两个问题:我如何为此进度条添加动画,如标准Windows动画:

enter image description here

注意进度条中的白色。而且我还想让进度条更加薄。我可以用CSS控制进度条的大小吗?

1 个答案:

答案 0 :(得分:4)

有关ProgressBar的所有样式问题已在多个地方得到解答。你只需要进行一些研究。

  • Simple example
  • Example with gradient
  • Extended example with code

    会标记为重复,但我很好奇是否有人投入实际的Windows 8进度条渐变。

  • 相关问题