1

如何更改滑块的颜色

<input type="range" id="input">

我已经尝试过颜色,背景颜色和背景颜色,它不会改变......

更新:

我想用javascript改变它。像这样的东西:

document.getElementById("input").style.background-color = "000000";
4

1 回答 1

7

尝试这个:

input[type=range] {
    -webkit-appearance: none;
    background-color: silver;
    width: 200px;
    height:20px;
}

input[type="range"]::-webkit-slider-thumb {
     -webkit-appearance: none;
    background-color: #666;
    opacity: 0.5;
    width: 10px;
    height: 26px;
}

document.getElementById("input").style.backgroundColor = '#000000';

jsfiddle

于 2013-08-28T16:40:35.810 回答