配置字体

编辑器的字体,可以通过 editor.config.fontNames 配置。

  1. const E = window.wangEditor
  2. const editor = new E('#div1')
  3. // 配置字体
  4. editor.config.fontNames = [
  5. // 对象形式 v4.6.16
  6. {name:"黑体",value:"黑体"},
  7. {name:"绝绝字体",value:"Times New Roman"}
  8. // 字符串形式
  9. '黑体',
  10. '仿宋',
  11. '楷体',
  12. '标楷体',
  13. '华文仿宋',
  14. '华文楷体',
  15. '宋体',
  16. '微软雅黑',
  17. 'Arial',
  18. 'Tahoma',
  19. 'Verdana',
  20. 'Times New Roman',
  21. 'Courier New',
  22. ]
  23. editor.create()