我正在尝试通过使用这样的两个范围元素来创建价格范围:
CSS 代码:
.first{
position : relative;
top :10px;
left :10px;
margin : 0;
padding : 0;
border : 1px solid red;
border-top : 4px solid transparent;
border-radius :3px;
z-index:0;
}
.next{
position : relative;
top :0px;
left :-153px;
margin : 0;
padding : 0;
border : 1px solid red;
border-bottom : 1px solid transparent;
border-radius :3px;
z-index : 4;
}
HTML 代码:
<span>price :</span>
<input class ="first" type="range" min="0" max="10000" step="100" value="0" multiple>
<input class ="next" type="range" min="0" max="10000" step="100" value="10000" multiple>
是否可以将主题设置为看起来像 jQuery 范围滑块?