如何根据滑块当前位置滑块的颜色更改 JFXSlider 滑块的颜色?

How can I change the color of a JFXSlider's thumb according to the color of the slider at the current position of the thumb on the slider?

我在 JavaFX 中使用了 JFXSlider,并且我对 JFXSlider 的轨道(使用 CSS)的颜色使用了线性渐变。但是,我还想将拇指的颜色更改为该位置滑块的颜色。我为滑块的线性渐变使用了以下 CSS 并摆脱了 JFXSlider:

的默认绿色
.jfx-slider .track {
    -fx-pref-height: 10;
    -fx-background-color: linear-gradient(to right,red,orange);
}
.jfx-slider .colored-track {
    -fx-background-color: transparent;
}

我尝试了以下 CSS 代码使缩略图颜色与当前位置的滑块颜色相同,但没有成功。

.jfx-slider .thumb {
    -fx-background-color: linear-gradient(to right,red,orange);
}

我想我试过的代码可能只为拇指的背景颜色提供了一个内部线性渐变。有谁知道如何解决这个问题? P.S。我正在使用 JFoenix 9.0.10、JavaFX 15 和 JDK 15.

一种可能的解决方案是添加全局 CSS 变量并根据 JFXSlider 当前值更改它。例如:

.root {
    -fx-custom-color : red;
}

然后在您的 jfx-slider css 规则上使用此变量,例如:

/* Styling the slider thumb */
.jfx-slider>.thumb {
    -fx-background-color: -fx-custom-color;
}

/* Styling the animated thumb */
.jfx-slider>.animated-thumb {
    -fx-background-color: -fx-custom-color;
}

之后,您需要弄清楚如何更新“-fx-custom-color”变量,以及如何确定您需要为滑块的特定值(或位置)设置哪种颜色。

首先,您应该为值 属性 添加一个监听器来监听值的变化。其次,使用 Color class 的插值方法来确定颜色,最后,使用内联 CSS 样式将 -fx-custom-color 的新值更新到 JFXSlider。

这是一个完整的例子:

import com.jfoenix.controls.JFXSlider;
import javafx.application.Application;
import javafx.geometry.Insets;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.layout.VBox;
import javafx.scene.paint.Color;
import javafx.stage.Stage;

public class SliderTesting extends Application {

    public static void main(String[] args) {
        launch(args);
    }

    @Override
    public void start(Stage primaryStage) throws Exception {

        JFXSlider slider = new JFXSlider(0, 100, 0);

        slider.valueProperty().addListener(e -> {
            Color imageColor = Color.RED.interpolate(Color.ORANGE,
                    slider.getValue() / 100);
            slider.setStyle("-fx-custom-color : " + colorToHex(imageColor) + ";");
        });

        VBox box = new VBox(slider);
        box.setPadding(new Insets(20));
        box.setPrefSize(400, 400);
        box.setAlignment(Pos.CENTER);

        Scene scene = new Scene(box);
        scene.getStylesheets()
                .add(this.getClass().getResource("custom-jfoenix.css").toExternalForm());
        primaryStage.setScene(scene);
        primaryStage.show();
    }

    public static String colorToHex(Color color) {
        return String.format("#%02X%02X%02X", (int) (color.getRed() * 255),
                (int) (color.getGreen() * 255), (int) (color.getBlue() * 255));
    }
}

和“自定义-jfoenix.css”文件

.root {
    -fx-custom-color : red;
}

/* Styling the slider track */
.jfx-slider>.track {
    -fx-pref-height: 10;
}

/* Styling the slider thumb */
.jfx-slider>.thumb {
    -fx-background-color: -fx-custom-color;
}

/* Styling the filled track */
.jfx-slider>.colored-track {
    -fx-background-color: linear-gradient(to right, red, orange);
}

/* Styling the animated thumb */
.jfx-slider>.animated-thumb {
    -fx-background-color: -fx-custom-color;
}

结果: