我想自定义 html5 input[range] 垂直时的外观。
想要避免像 transform:rotate 这样的 CSS 3 指令,它会使 UI 布局复杂化。
Webkit css 属性在我的上下文中被识别,其他供应商在我的情况下是无用的。
自定义适用于水平默认滑块,但不适用于垂直滑块,您可以在此处查看:
jsfiddle:http: //jsfiddle.net/QU5VD/1/
否则,这是代码:
HTML
<input type="range" class="vHorizon" />
<input type="range" class="vVertical" />
CSS
input[type="range"].vHorizon {
-webkit-appearance: none;
background-color: pink;
width: 200px;
height:10px;
}
input[type="range"].vVertical {
-webkit-appearance: slider-vertical;
background-color: pink;
width: 10px;
height:200px;
}
input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
background-color: red;
width: 20px;
height: 20px;
}