selcolor.html 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. <HTML>
  2. <HEAD>
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  4. <TITLE>颜色</TITLE>
  5. <STYLE TYPE="text/css">
  6. td {font-size: 10.8pt}
  7. body {font-size: 10.8pt}
  8. BUTTON {width:5em}
  9. </STYLE>
  10. <SCRIPT LANGUAGE=JavaScript>
  11. var SelRGB = '';
  12. var DrRGB = '';
  13. var SelGRAY = '120';
  14. var hexch = new Array('0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F');
  15. //return srcElement
  16. function eGetSrcElement(e){
  17. var theEvent= window.event || e;
  18. var srcElement= theEvent.srcElement;
  19. var thisisie=1;
  20. if(!srcElement)
  21. {
  22. srcElement=theEvent.target;
  23. thisisie=0;
  24. }
  25. return srcElement;
  26. }
  27. //return isie
  28. function eGetIsIE(e){
  29. var theEvent= window.event || e;
  30. var srcElement= theEvent.srcElement;
  31. var thisisie=1;
  32. if(!srcElement)
  33. {
  34. srcElement=theEvent.target;
  35. thisisie=0;
  36. }
  37. return thisisie;
  38. }
  39. function ToHex(n)
  40. { var h, l;
  41. n = Math.round(n);
  42. l = n % 16;
  43. h = Math.floor((n / 16)) % 16;
  44. return (hexch[h] + hexch[l]);
  45. }
  46. function DoColor(c, l)
  47. { var r, g, b;
  48. r = '0x' + c.substring(1, 3);
  49. g = '0x' + c.substring(3, 5);
  50. b = '0x' + c.substring(5, 7);
  51. if(l > 120)
  52. {
  53. l = l - 120;
  54. r = (r * (120 - l) + 255 * l) / 120;
  55. g = (g * (120 - l) + 255 * l) / 120;
  56. b = (b * (120 - l) + 255 * l) / 120;
  57. }else
  58. {
  59. r = (r * l) / 120;
  60. g = (g * l) / 120;
  61. b = (b * l) / 120;
  62. }
  63. return '#' + ToHex(r) + ToHex(g) + ToHex(b);
  64. }
  65. function EndColor(e)
  66. { var i,rbgtext,graytext;
  67. var thisisie=eGetIsIE(e);
  68. if(DrRGB != SelRGB)
  69. {
  70. DrRGB = SelRGB;
  71. for(i = 0; i <= 30; i ++)
  72. GrayTable.rows(i).bgColor = DoColor(SelRGB, 240 - i * 8);
  73. }
  74. rbgtext=thisisie==1?RGB.innerText:RGB.textContent;
  75. graytext=thisisie==1?GRAY.innerText:GRAY.textContent;
  76. SelColor.value = DoColor(rbgtext,graytext);
  77. ShowColor.bgColor = SelColor.value;
  78. }
  79. //fun
  80. function ColorTableOnclick(e){
  81. var srcElement=eGetSrcElement(e);
  82. SelRGB = srcElement.bgColor;
  83. EndColor(e);
  84. }
  85. function ColorTableOnmouseover(e){
  86. var thisisie=eGetIsIE(e);
  87. var srcElement=eGetSrcElement(e);
  88. if(thisisie==1)
  89. {
  90. RGB.innerText = srcElement.bgColor;
  91. }
  92. else
  93. {
  94. RGB.textContent = srcElement.bgColor;
  95. }
  96. EndColor(e);
  97. }
  98. function ColorTableOnmouseout(e){
  99. var thisisie=eGetIsIE(e);
  100. if(thisisie==1)
  101. {
  102. RGB.innerText=SelRGB;
  103. }
  104. else
  105. {
  106. RGB.textContent=SelRGB;
  107. }
  108. EndColor(e);
  109. }
  110. //fun2
  111. function GrayTableOnclick(e){
  112. var srcElement=eGetSrcElement(e);
  113. SelGRAY = srcElement.title;
  114. EndColor(e);
  115. }
  116. function GrayTableOnmouseover(e){
  117. var thisisie=eGetIsIE(e);
  118. var srcElement=eGetSrcElement(e);
  119. if(thisisie==1)
  120. {
  121. GRAY.innerText=srcElement.title;
  122. }
  123. else
  124. {
  125. GRAY.textContent=srcElement.title;
  126. }
  127. EndColor(e);
  128. }
  129. function GrayTableOnmouseout(e){
  130. var thisisie=eGetIsIE(e);
  131. if(thisisie==1)
  132. {
  133. GRAY.innerText=SelGRAY;
  134. }
  135. else
  136. {
  137. GRAY.textContent=SelGRAY;
  138. }
  139. EndColor(e);
  140. }
  141. //fun3
  142. function OkOnclick(){
  143. window.returnValue = SelColor.value;
  144. window.close();
  145. }
  146. </SCRIPT>
  147. </HEAD>
  148. <BODY bgcolor="#cccccc">
  149. <div align="center"><center><table border="0" cellspacing="10" cellpadding="0"><tr><td>
  150. <TABLE ID=ColorTable BORDER=0 CELLSPACING=0 CELLPADDING=0 style='cursor:pointer' onclick="ColorTableOnclick(event);" onmouseover="ColorTableOnmouseover(event);" onmouseout="ColorTableOnmouseout(event);">
  151. <SCRIPT LANGUAGE=JavaScript>
  152. function wc(r, g, b, n)
  153. {
  154. r = ((r * 16 + r) * 3 * (15 - n) + 0x80 * n) / 15;
  155. g = ((g * 16 + g) * 3 * (15 - n) + 0x80 * n) / 15;
  156. b = ((b * 16 + b) * 3 * (15 - n) + 0x80 * n) / 15;
  157. document.write('<TD BGCOLOR=#' + ToHex(r) + ToHex(g) + ToHex(b) + ' height=8 width=8></TD>');
  158. }
  159. 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);
  160. for(i = 0; i < 16; i ++)
  161. {
  162. document.write('<TR>');
  163. for(j = 0; j < 30; j ++)
  164. {
  165. n1 = j % 5;
  166. n2 = Math.floor(j / 5) * 3;
  167. n3 = n2 + 3;
  168. wc((cnum[n3] * n1 + cnum[n2] * (5 - n1)),
  169. (cnum[n3 + 1] * n1 + cnum[n2 + 1] * (5 - n1)),
  170. (cnum[n3 + 2] * n1 + cnum[n2 + 2] * (5 - n1)), i);
  171. }
  172. document.writeln('</TR>');
  173. }
  174. </SCRIPT>
  175. </TABLE></td><td>
  176. <TABLE ID=GrayTable BORDER=0 CELLSPACING=0 CELLPADDING=0 style='cursor:pointer' onclick="GrayTableOnclick(event);" onmouseover="GrayTableOnmouseover(event);" onmouseout="GrayTableOnmouseout(event);">
  177. <SCRIPT LANGUAGE=JavaScript>
  178. for(i = 255; i >= 0; i -= 8.5)
  179. document.write('<TR BGCOLOR=#' + ToHex(i) + ToHex(i) + ToHex(i) + '><TD TITLE=' + Math.floor(i * 16 / 17) + ' height=4 width=20></TD></TR>');
  180. </SCRIPT>
  181. </TABLE></td></tr></table></center></div>
  182. <div align="center"><center><table border="0" cellspacing="10" cellpadding="0">
  183. <tr><td rowspan="2" align="center">
  184. 选中色彩<table ID=ShowColor border="1" width="40" height="30" cellspacing="0" cellpadding="0">
  185. <tr><td></td></tr></table></td>
  186. <td rowspan="2">基色: <SPAN ID=RGB></SPAN><BR>
  187. 亮度: <SPAN ID=GRAY>120</SPAN><BR>
  188. 代码: <INPUT TYPE=TEXT SIZE=7 ID=SelColor></td>
  189. <td><BUTTON ID=Ok TYPE=SUBMIT onclick="OkOnclick();">确定</BUTTON></td></tr>
  190. <tr><td><BUTTON ONCLICK="window.close();">取消</BUTTON></td></tr></table></center></div>
  191. </BODY>
  192. </HTML>