/source/Plug-in/kind/examples/custom-theme.html

http://prosporous.googlecode.com/ · HTML · 33 lines · 33 code · 0 blank · 0 comment · 0 complexity · a34167356c5a11fb8d19881d7786c2f5 MD5 · raw file

  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>Custom Theme Examples</title>
  6. <style>
  7. form {
  8. margin: 0;
  9. }
  10. textarea {
  11. display: block;
  12. }
  13. </style>
  14. <script charset="utf-8" src="../kindeditor-min.js"></script>
  15. <script charset="utf-8" src="../lang/zh_CN.js"></script>
  16. <script>
  17. KindEditor.ready(function(K) {
  18. K.create('#content1', {
  19. themeType : 'default'
  20. });
  21. K.create('#content2', {
  22. themeType : 'simple'
  23. });
  24. });
  25. </script>
  26. </head>
  27. <body>
  28. <h3>????</h3>
  29. <textarea id="content1" name="content" style="width:700px;height:200px;visibility:hidden;"></textarea>
  30. <h3>????</h3>
  31. <textarea id="content2" name="content" style="width:700px;height:200px;visibility:hidden;"></textarea>
  32. </body>
  33. </html>