Advertisement
Guest User

Untitled

a guest
Feb 26th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>color selecror</title>
  6. <link rel="stylesheet" href="main.css">
  7. <script type="text/javascript" src="main.js" defer></script>
  8. </head>
  9. <body>
  10. <div>
  11. <canvas id="wrap" width="340px" height="300px"></canvas>
  12. <canvas id="box" width="300px" height="300px"></canvas>
  13. <canvas id="line" width="20px" height="300px"></canvas>
  14. <ul>
  15. <li><span>R</span><input type="text" class="rgb" maxlength='3'
  16. ></li>
  17. <li><span>G</span><input type="text" class="rgb" maxlength='3'
  18. ></li>
  19. <li><span>B</span><input type="text" class="rgb" maxlength='3'
  20. ></li>
  21. </br>
  22. <li><span>H</span><input type="text" maxlength='4' class="hsl"
  23. ></li>
  24. <li><span>L</span><input type="text" maxlength='4' class="hsl"
  25. ></li>
  26. <li><span>S</span><input type="text" maxlength='4' class="hsl"
  27. ></li>
  28. </ul>
  29. <li><span>CSS color</span><input type="text" maxlength='7' class="hex"
  30. ></li>
  31. <button>确认</button>
  32. </div>
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement