TinyMCE默认字体列表

时间:2018-04-10 11:10:32

标签: javascript tinymce

我正在为TinyMCE使用两个初始化:

  • 默认字体列表。就是这样。
  • 自定义字体列表,其中还包含默认字体列表和自定义字体。问题是使用线(2和3):

    tinyMCE.init({ selector: '#htmleditor', content_css: ['https://fonts.googleapis.com/css?family=Gugi'], font_formats: 'GugiQuiter=Gugi;', });

它只删除默认字体列表并显示列出的唯一字体。

这个编辑器的默认字体列表是什么想法?

亲切的问候,

1 个答案:

答案 0 :(得分:0)

好吧,最后找到的列表:

tinyMCE.init({
...
theme_advanced_fonts : "Andale Mono=andale mono,times;"+
    "Arial=arial,helvetica,sans-serif;"+
    "Arial Black=arial black,avant garde;"+
    "Book Antiqua=book antiqua,palatino;"+
    "Comic Sans MS=comic sans ms,sans-serif;"+
    "Courier New=courier new,courier;"+
    "Georgia=georgia,palatino;"+
    "Helvetica=helvetica;"+
    "Impact=impact,chicago;"+
    "Symbol=symbol;"+
    "Tahoma=tahoma,arial,helvetica,sans-serif;"+
    "Terminal=terminal,monaco;"+
    "Times New Roman=times new roman,times;"+
    "Trebuchet MS=trebuchet ms,geneva;"+
    "Verdana=verdana,geneva;"+
    "Webdings=webdings;"+
    "Wingdings=wingdings,zapf dingbats",
...

});