为 HTML5 范围输入每侧设置不同的颜色
在 HTML5 范围输入的滑块之前和之后实现不同的颜色需要浏览器 -具体的
Chrome:
IE:
Firefox:
示例代码:
@media screen and (-webkit-min-device-pixel-ratio:0) { input[type='range'] { overflow: hidden; width: 80px; background-color: #9a905d; } input[type='range']::-webkit-slider-runnable-track { height: 10px; color: #13bba4; margin-top: -1px; } input[type='range']::-webkit-slider-thumb { width: 10px; height: 10px; cursor: ew-resize; background: #434343; box-shadow: -80px 0 0 80px #43e5f7; } } input[type="range"]::-moz-range-progress { background-color: #43e5f7; } input[type="range"]::-moz-range-track { background-color: #9a905d; } input[type="range"]::-ms-fill-lower { background-color: #43e5f7; } input[type="range"]::-ms-fill-upper { background-color: #9a905d; }
<input type="range" />
以上是如何为 HTML5 范围输入的每一侧设置不同颜色的样式?的详细内容。更多信息请关注PHP中文网其他相关文章!