我想在範圍輸入上使用不同顏色的拇指樣式。我嘗試過尋找解決方案,但我還沒有找到合適的解決方案。這是我需要它的樣子:拇指前的樣式輸入範圍背景
鉻似乎不再支持input[type='range']::-webkit-slider-thumb:before
了,我不知道如何設計它。這是我到目前爲止有:
input[type='range'] {
min-width: 100px;
max-width: 200px;
&::-webkit-slider-thumb {
-webkit-appearance: none !important;
background-color: @white;
border: 1px solid @gray-4;
height: 14px;
width: 14px;
&:hover,
&:focus,
&:active {
border-color: @blue;
background-color: @gray-2;
}
}
&::-webkit-slider-runnable-track {
background-color: @gray-2;
border: 1px solid @gray-4;
}
}
[這個其他堆棧溢出問題(http://stackoverflow.com/questions/18389224/how-to-style-html5-range-input-to-have-different-color-before-and-after-slider)有一個很好的答案。 –
[如何設置HTML5範圍輸入以在滑塊之前和之後具有不同的顏色?](http://stackoverflow.com/questions/18389224/how-to-style-html5-range-input-to-have-不同顏色-之前和之後的滑動件) – shaochuancs