21

我想在 CKEditor 字体组合框中添加一种字体。这本身就很容易。但是,我要添加的字体是与 @font-face CSS3 属性一起使用的自定义字体。我设法做到了,但编辑器本身不显示自定义字体。如果我只使用 CKEditor 创建的 html 并将其显示在页面上的 div 中,自定义字体会很好地显示。我还想以某种方式将@font-face 属性添加到CKEditor 的文本区域,这样我的用户就可以在键入时看到自定义字体。

这可能吗?

4

1 回答 1

42

将以下行添加到 ckeditor/config.js

config.contentsCss = 'fonts.css';
//the next line add the new font to the combobox in CKEditor
config.font_names = 'fontnametodisplay/yourfontname;' + config.font_names;

其中 fonts.css 具有 @font-face 属性:

@font-face {  
    font-family: "yourfontname";  
    src: url( ../fonts/font.eot ); /* IE */  
    src: local("realfontname"), url("../fonts/font.TTF") format("truetype"); /*non-IE*/  
}
于 2009-09-09T17:35:45.707 回答