gpt4 book ai didi

css - 将@font-face 添加到 CKEditor

转载 作者:技术小花猫 更新时间:2023-10-29 10:14:43 25 4
gpt4 key购买 nike

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

这可能吗?

最佳答案

将以下行添加到 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*/
}

关于css - 将@font-face 添加到 CKEditor,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1398342/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com