在 Quill 编辑器 Angular 2+ 中添加字体

问题描述 投票:0回答:3

我在 Angular 中使用鹅毛笔编辑器,我无法在 Angular 2+ 中添加多种字体 我正在使用以下代码片段

QuillModule.forRoot({
      modules: {
        toolbar: [
          ['blockquote', 'code-block'],

          // [{ 'header': 1 }, { 'header': 2 }],               // custom button values
          [{ 'list': 'ordered' }, { 'list': 'bullet' }],
          // [{ 'script': 'sub' }, { 'script': 'super' }],      // superscript/subscript
          [{ 'indent': '-1' }, { 'indent': '+1' }],          // outdent/indent
          [{ 'direction': 'rtl' }],                         // text direction

          [{ 'size': ['small', false, 'large', 'huge'] }],  // custom dropdown
          [{ 'header': [1, 2, 3, 4, 5, 6, false] }],

          [{ 'color': [] }, { 'background': [] }],          // dropdown with defaults from theme
          [{ 'font': [] }],
          [{ 'align': [] }],

          ['clean'],                                         // remove formatting button

          ['link', 'image']                         // link and image, video
        ]
      },

    })

每当我在字体列表中添加字体时,我总是得到相同的字体。我也关注了这个链接,但我想它不是为了角度 如何使用工具栏选项在 Quill js 上添加字体类型?

有人可以帮助我吗?

javascript angular quill ngx-quill
3个回答
2
投票

我这样解决了我的问题。

首先,您必须在白名单中定义您的字体。

import Quill from 'quill';

const FontAttributor = Quill.import('attributors/class/font');
FontAttributor.whitelist = [
  'IRANSans',
  'roboto',
  'cursive',
  'fantasy',
  'monospace'
];
Quill.register(FontAttributor, true);

然后您必须将字体添加到组件内的配置中。

quillConfig: QuillModules = {
    toolbar: {
      container: [
        ['bold', 'italic', 'underline', 'strike'],
        [{ size: ['small', false, 'large', 'huge'] }],
        [{ font: ['IRANSans', 'roboto', 'cursive', 'fantasy', 'monospace'] }],
        [{ align: [] }],
        ['clean'],
        ['link'],
      ]
    }
  };

通过应用这些更改,您的字体将被添加到字体列表中,并将获得数据值属性。

enter image description here

之后,您需要向应用程序添加一系列样式。

.ql-snow .ql-picker-options .ql-picker-item {
  font-family: #{attr(data-value)};
  &::before {
    content: attr(data-value) !important;
  }
}

.ql-snow .ql-picker.ql-font .ql-picker-label::before,
.ql-snow .ql-picker.ql-font .ql-picker-item::before {
  content: attr(data-value) !important;
}

最后,要在编辑器内的文本上应用字体系列,您可以像这样使用 sass、sccs。

$text-editor-fonts: 'IRANSans', 'roboto', 'cursive', 'fantasy', 'monospace';

@each $text-editor-font in $text-editor-fonts {
  .ql-font-#{$text-editor-font} {
    font-family: $text-editor-font;
  }
}

0
投票

具有

ql-font
类的选择标签。这将包含新的字体选项。将新字体添加到白名单中。必须在调用 Javascript 中的 Quill 构造函数之前定义它。为下拉列表中的每个标签定义字体系列。示例:

font-family: "Inconsolata"

定义将在文本区域中使用的内容字体系列。按照第三个组件中的示例:

.ql-font-inconsolata
{ font-family: "Inconsolata";}


0
投票

使用 Angular 18 的完整工作示例,自定义字体,无需自定义鹅毛笔编辑器的 html 工具栏。

https://github.com/Samyssmile/quill-angular-example

© www.soinside.com 2019 - 2024. All rights reserved.