custom-theme.html 889 B

12345678910111213141516171819202122232425262728293031323334
  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. <link rel="stylesheet" href="../themes/default/default.css" />
  15. <script charset="utf-8" src="../kindeditor-min.js"></script>
  16. <script charset="utf-8" src="../lang/zh_CN.js"></script>
  17. <script>
  18. KindEditor.ready(function(K) {
  19. K.create('#content1', {
  20. themeType : 'default'
  21. });
  22. K.create('#content2', {
  23. themeType : 'simple'
  24. });
  25. });
  26. </script>
  27. </head>
  28. <body>
  29. <h3>默认风格</h3>
  30. <textarea id="content1" name="content" style="width:700px;height:200px;visibility:hidden;"></textarea>
  31. <h3>简单风格</h3>
  32. <textarea id="content2" name="content" style="width:700px;height:200px;visibility:hidden;"></textarea>
  33. </body>
  34. </html>