欢迎各位兄弟 发布技术文章
这里的技术是共享的
本文实例讲述了JS实现的RGB网页颜色在线取色器。分享给大家供大家参考,具体如下:
运行效果图如下:
完整实例代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 | <html> <head> <meta content= "text/html; charset=utf-8" http-equiv= "content-type" > <meta name= "description" content= "在线取色器" > <meta name= "keywords" content= "在线取色器" > <title>RGB网页颜色在线取色器</title> <style type= "text/css" > <!-- a.g:link { text-decoration: none; color: #0000FF; font-size: 13px; } a.g:visited { text-decoration: none; color: #0000FF; font-size: 13px; } a.g:hover { text-decoration: none; color: #FF0000; font-size: 13px; } .gray{color: #666666} .f12{font-size:12px} .box{padding:2px;border:1px solid #CCC} --> </style> <script language= "javascript" > <!-- function h(obj,url){ obj.style.behavior= 'url(#default#homepage)' ; obj.setHomePage(url); } function $(id){ obj=document.getElementById(id); if (obj== null ) obj=document.all.id; return obj; } //检查颜色值-Begin function isNum16(ch) { if (ch >= '0' && ch <= '9' ) return true ; if (ch >= 'A' && ch <= 'F' ) return true ; if (ch >= 'a' && ch <= 'f' ) return true ; return false ; } function isAllNum16(str1) { //判断颜色值。除第一个字符#外的任一个值是否大于等a,A,0,小于等于f,F,9,否则报错。 for (i=1; i<str1.length; i++) { if (!isNum16(str1.charAt(i))) { return false ; } } return true ; } function checkCol(myColor) { //made by jiarry,input color value to change background if (myColor!= "" ) { if (myColor.length !=7 || myColor.charAt(0)!= "#" ) { alert( "颜色值加#至少7位,请检查!" ); $( "SelColor" ).value= "" ; } else if (!isAllNum16(myColor)) { alert( "颜色代码错误,请检查\n 颜色代码示例:#ff6600" ); $( "SelColor" ).value= "" ; } else { return myColor; } } } //检查颜色值-END var SelRGB = '#808080' ; var DrRGB = "" ; var SelGRAY = '120' ; var SelCol= "" ; var baseCol= "#808080" ; var light= "120" ; var RGB=$( "RGB" ); var hexch = new Array( '0' , '1' , '2' , '3' , '4' , '5' , '6' , '7' , '8' , '9' , 'A' , 'B' , 'C' , 'D' , 'E' , 'F' ); //add innerText to FireFox Begin if (!document.all){ HTMLElement.prototype.__defineGetter__ ( "innerText" , function () { var anyString = "" ; var childS = this .childNodes; for ( var i=0; i<childS.length; i++) { if (childS[i].nodeType==1) anyString += childS[i].tagName== "BR" ? '\n' : childS[i].innerText; else if (childS[i].nodeType==3) anyString += childS[i].nodeValue; } return anyString; } ); } ////add innerText to FireFox End function ToHex(n) { var h, l; n = Math.round(n); l = n % 16; h = Math.floor((n / 16)) % 16; return (hexch[h] + hexch[l]); } function DoColor(c, l) { var r, g, b; r = '0x' + c.substring(1, 3); g = '0x' + c.substring(3, 5); b = '0x' + c.substring(5, 7); if (l > 120) { l = l - 120; r = (r * (120 - l) + 255 * l) / 120; g = (g * (120 - l) + 255 * l) / 120; b = (b * (120 - l) + 255 * l) / 120; } else { r = (r * l) / 120; g = (g * l) / 120; b = (b * l) / 120; } return '#' + ToHex(r) + ToHex(g) + ToHex(b); } function EndColor() { var i; var GrayTable=$( "GrayTable" ); if (DrRGB != SelRGB) { DrRGB = SelRGB; for (i = 0; i <= 30; i ++) GrayTable.rows[i].bgColor = DoColor(SelRGB, 240 - i * 8); } var SelColor=$( "SelColor" ); var RGB=baseCol; var GRAY=light; var ShowColor=$( "ShowColor" ); SelColor.value = DoColor(baseCol, light); ShowColor.bgColor = SelColor.value; document.getElementById( 'copytip' ).innerHTML= '' ; } function ctOut(e) { baseCol=SelRGB; EndColor(baseCol); } function ctClick(e) { SelRGB = e.bgColor; EndColor();} function ctOver(e){ baseCol = e.bgColor.toUpperCase(); EndColor(); } function gtOver(e){ light = e.title; EndColor(); } function gtOut() { light = SelGRAY; EndColor(); } function gtClick(e){ SelGRAY = e.title; EndColor(); } function okClick(){ var SelColor=$( "SelColor" ); self.parent.setColor(SelColor.value); } function inpCol(o){ var l=o.value; if (l.length==7){ $( 'ShowColor' ).bgColor=checkCol(o.value);} else if (l.length>7){ o.value=l.substring(0,7); alert( "颜色代码加#不能超过7位" ); } } --> </script> </head> <body bgcolor= #ffffff text=#000000 vlink=#0033CC alink=#800080 link=#0033cc topmargin="0"> <p> </p> <table align= "center" width= "700" ><tr><td> </td></tr> <tr><td> </td></tr> </table> <table width= "720" border= "0" cellspacing= "0" cellpadding= "0" align= "center" > <tr> <td bgcolor= "#40A6DD" width= "720" ><b style= "color:#FFFF00; font-size:16px;" > 颜色选择器</b></td>
<td class= "padd10" > <br> <table width= "720" border= "0" cellpadding= "0" cellspacing= "0" class= "colTab" > <tr align= "left" valign= "top" > <td width=515> <table border= "0" cellspacing= "0" cellpadding= "0" ><tr><td> <span class= "gray f12" >颜色:</span> <div class= "box" style= "padding:0;width:422px !important;width:424px" > <TABLE ID=ColorTable BORDER=0 CELLSPACING=2 CELLPADDING=0 style= 'cursor:pointer' > <SCRIPT LANGUAGE=JavaScript> function wc(r, g, b, n) { r = ((r * 16 + r) * 3 * (15 - n) + 0x80 * n) / 15; g = ((g * 16 + g) * 3 * (15 - n) + 0x80 * n) / 15; b = ((b * 16 + b) * 3 * (15 - n) + 0x80 * n) / 15; document.write( '<TD BGCOLOR=#' + ToHex(r) + ToHex(g) + ToHex(b) + ' height=8 width=12 onmouseover="ctOver(this)" onmouseout="ctOut(this)" onmousedown="ctClick(this)"></TD>' ); } var cnum = new Array(1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0); for (i = 0; i < 16; i ++) { document.write( '<TR>' ); for (j = 0; j < 30; j ++) { n1 = j % 5; n2 = Math.floor(j / 5) * 3; n3 = n2 + 3; wc((cnum[n3] * n1 + cnum[n2] * (5 - n1)), (cnum[n3 + 1] * n1 + cnum[n2 + 1] * (5 - n1)), (cnum[n3 + 2] * n1 + cnum[n2 + 2] * (5 - n1)), i); } document.writeln( '</TR>' ); } </SCRIPT> </TABLE> </div> </td><td valign= "top" style= "padding-left:30px " > <span class= "gray f12" >亮度:</span> <div class= "box" style= "width:20px !important;width:26px;" > <TABLE ID=GrayTable BORDER=0 CELLSPACING=0 CELLPADDING=0 style= 'cursor:pointer' > <SCRIPT LANGUAGE=JavaScript> for (i = 255; i >= 0; i -= 8.5) { document.write( '<TR BGCOLOR=#' + ToHex(i) + ToHex(i) + ToHex(i) + '><TD TITLE=' + Math.floor(i * 16 / 17) + ' height=5 width=20 onmouseover="gtOver(this)" onmouseout="gtOut()" onmousedown="gtClick(this)"></TD></TR>' ); } </SCRIPT> </TABLE> </div> </td></tr> </table> </td> <td width=87 valign= "top" > <span class= "gray f12" >选中颜色:</span> <div class= "box" style= "width:50px !important;width:54px " > <table ID=ShowColor width= "50" height= "24" cellspacing= "0" cellpadding= "0" > <tr><td></td></tr> </table> </div> </td> <td width= "128" valign= "top" > <span class= "gray f12" >代码:</span><br> <INPUT TYPE=TEXT class= "colInp" ID=SelColor value= "#FFFFFF" SIZE=7 onKeyUp= "inpCol(this)" > <input type=button style= "visibility:hidden!important;visibility:visible" onClick= "document.getElementById('SelColor').select();clipboardData.setData('text',document.getElementById('SelColor').value); document.getElementById('copytip').innerHTML='代码已复制到剪贴板';" value= " 复制 " ><div id= "copytip" class= "gray f12" style= "margin-top:5px" ></div><div style= "visibility:hidden" >基色 : <SPAN ID=RGB> #000000</SPAN><BR>亮度 : <SPAN ID=GRAY>120</SPAN><BR></div></td> </tr> </table> <script> EndColor(); </script> </td> </tr> </table> <center> </center> </body> </html> |
PS:这里再为大家推荐几款本站的相关在线工具:
在线RGB、HEX颜色代码生成器:
http://tools.jb51.net/color/rgb_color_generator
RGB颜色查询对照表_颜色代码表_颜色的英文名称大全:
http://tools.jb51.net/color/jPicker
在线网页调色板工具:
http://tools.jb51.net/color/color_picker
在线颜色选择器工具/RGB颜色查询对照表:
http://tools.jb51.net/color/colorpicker