3

我正在使用 html5 范围标签,我不知道为什么,但我遇到了 Firefox 的问题。在 chrome 上它工作正常......这是我的代码

<div id="slider">
5% <input id="slide" type="range"
 min="5" max="200" step="5" value="100"
 onchange="updateSlider(this.value)" />
 200%
</div><br/>
<div id="chosen">0</div>

而CSS是

#chosen {
border-radius:10px;
width:45px;
padding-top:10px; padding-bottom:10px;
background-image: -webkit-linear-gradient(top, #cccccc, #330000);
background-image: -o-linear-gradient(top, #cccccc, #330000);
background-image: -moz-linear-gradient(top, #cccccc, #330000);
text-align:center;
color:#ffffff;
font-weight:bold; font-size:large;
margin-left:40px;}
#slider {
margin-left:10px;
}
input[type='range'] {
-webkit-appearance: none;
padding-left:2px; padding-right:2px;
-webkit-border-radius: 5px;
background-image: -webkit-linear-gradient(top, #000000, #333333, #000000);
}

我还使用了一些 javascript:

function updateSlider(slideAmount) {
//get the element
var display = document.getElementById("chosen");
//show the amount
display.innerHTML=slideAmount;
}
4

1 回答 1

1

Firefox 仍然没有实现它。我不知道为什么,但他们似乎在某种程度上搁置了 HTML 表单。

于 2012-12-21T16:16:02.230 回答