利用range表单元素实现调色板
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了利用range表单元素实现调色板相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html> <head> <meta http-equiv="content-type" content="text/html" charset="utf-8"/> <title>自定义调色器</title> <style> div{ float:left; width:200px; height:200px; border:1px solid #ddd; } </style> <script> function $(id){ return document.getElementById(id); } function color_change(){ var r=$("txtRangeRed").value; var g=$("txtRangeGreen").value; var b=$("txtRangeBlue").value; var color="rgb("+r+","+g+","+b+")"; $("color").style.backgroundColor=color; } </script> </head> <body> <div> <form name="frm"> <br> R:0<input type="range" min="0" max="255" step="1" value="0" id="txtRangeRed" onchange="color_change()">255<br><br> G:0<input type="range" min="0" max="255" step="1" value="0" id="txtRangeGreen" onchange="color_change()">255<br><br> B:0<input type="range" min="0" max="255" step="1" value="0" id="txtRangeBlue" onchange="color_change()">255 </form> </div> <div id="color"></div> </body> </html>
以上是关于利用range表单元素实现调色板的主要内容,如果未能解决你的问题,请参考以下文章