前端之家收集整理的这篇文章主要介绍了
把自定义样式应用到HTML 5中的range元素实现方法,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
能不能把
自定义样式应用到HTML 5中的range元素上。晚上研究了一下,是可以实现上述的需求的。请用Chrome查看Demo。
代码如下:
HTML代码如下:
<!-- 来自 编程之家 jb51.cc (jb51.cc)-->
<!DOCTYPE html>
<html>
<head>
<Meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title>自定義樣式的input[type=range]</title>
<style type="text/css">
#range {
width: 600px;
height: 10px;
background: rgba(60,114,230,.8);
border: 1px solid #333;
-webkit-border-radius: 5px;
-webkit-appearance: none !important;
}
#range::-webkit-slider-thumb{
width: 28px;
height: 28px;
background: -webkit-gradient(
linear,left top,left bottom,from(#fff),to(#ccc)
);
border: 1px solid #000;
-webkit-Box-shadow: 0 0 6px #000;
-webkit-border-radius: 14px;
-webkit-appearance: none !important;
}
#result {
border: 2px solid #ccc;
width: 32px;
}
</style>
</head>
<body>
<input type='range' min='0' max='1000' value='0' id='range' />
<input type='text' id='result'/>
<script type='text/javascript'>
var result = document.getElementById('result');
document.getElementById('range').onchange = function() {
result.value = this.value;
}
</script>
</body>
</html>
代码中的
”-webkit-appearance: none !important”很重要,要先把
-webkit-appearance设置为none才能
自定义样式。
原文链接:https://www.f2er.com/html/527542.html