我正在尝试使用 Ion.RangeSlider 制作一个滑块,其中颜色从中心开始并朝着滑块控件的方向移动,直到它碰到滑块控件。现在,这就是我所拥有的:

相反,我希望颜色从滑块的中心到滑块控件。

如何让 RangeSlider 像这样工作,以便颜色从中间开始(如上图所示)?

编辑:

我查看了 this question ,但它处理带有两个控件而不是一个控件的滑块。

编辑 1:

setup.js :

jQuery(document).ready(function($){

     $(".slider").each(function() {

        console.log($(this).attr("id"));
        $(this).ionRangeSlider({
            type: $(this).attr("data-slider_type"),
            grid: $(this).attr("data-slider_grid"),
            min:  $(this).attr("data-slider_min"),
            max:  $(this).attr("data-slider_max"),
            prefix: $(this).attr("data-slider_prefix")+" ",
            postfix: " " + $(this).attr("data-slider_suffix"),
            step: $(this).attr("data-slider_stepper"),
            from:  $(this).attr("data-slider_from")
        });

        $(this).on("change", function () {
            var $this = $(this),
                value = $this.prop("value").split(";");
        });
    });

});

最佳答案

使用:https://github.com/jordansoltman/ion.rangeSlider with 有额外的 bool 选项:fixMiddle。例如:

$(".slider").ionRangeSlider({
    fixMiddle: true,
    ...
});

注意:使用 ion.rangeSlider.js 因为 ion.rangeSlider.min.js 没有更新。

10-07 18:06