firefox的html5范围标签问题?

时间:2012-12-21 13:59:12

标签: html5 firefox css3 firebug

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

<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;
}

1 个答案:

答案 0 :(得分:1)

Firefox仍然没有实现它。我不确定为什么,但他们似乎已经暂时搁置了HTML表单。