You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
687 B

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>jscolor Example</title>
  5. </head>
  6. <body style="text-align:center;">
  7. <script src="jscolor.js"></script>
  8. <h2>Example 1</h2>
  9. Color: <input class="jscolor" value="ab2567">
  10. <h2>Example 2</h2>
  11. <button class="jscolor {valueElement:'chosen-value', onFineChange:'setTextColor(this)'}">
  12. Pick text color
  13. </button>
  14. HEX value: <input id="chosen-value" value="000000">
  15. <script>
  16. function setTextColor(picker) {
  17. document.getElementsByTagName('body')[0].style.color = '#' + picker.toString()
  18. }
  19. </script>
  20. <p style="margin-top:3em;">Check out <a href="http://jscolor.com/examples/">more examples at jscolor.com</a>!</p>
  21. </body>
  22. </html>