gpt4 book ai didi

css - 水平 JQuery UI slider

转载 作者:行者123 更新时间:2023-11-28 06:06:41 25 4
gpt4 key购买 nike

我想实现与下面相同但水平的。我尝试将方向更改为水平,甚至完全将其保留,因此它默认为水平,但颜色默认为橙色。我正在使用 ASP.NET。

Vertical slider, in which the filled bar change colour depending on how large the selected value gets

最佳答案

我觉得100%理解你想要什么有点难

但我为您创建了水平。

Fiddle

Fiddle with Orange color

$(function() {

$("#slider-vertical").slider({
orientation: "Horizontal",
range: "min",
min: 0,
max: 100,
value: 60,
slide: function(event, ui) {
$("#amount").val(ui.value);
var g = parseInt(ui.value <= 50 ? 255 : 255 - ((ui.value-50)*(255/50)));
var r = parseInt(ui.value >= 50 ? 255 : 255 - ((50-ui.value)*(255/50)));
$(".ui-widget-header").css("background-color", "rgb("+r+","+g+",0)");
}
});
$("#amount").val($("#slider-vertical").slider("value"));
});

关于css - 水平 JQuery UI slider ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36403689/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com