ckeditor5字体大小配置,字体颜色设置api

1,ckeditor5中使用api设置选中字体

属性

 import CKEditor from '@/common/plugin/ckeditor/ckeditor';
 CKEditor
      .create(document.querySelector('#editor'), {
        licenseKey: '',
        fontSize: {
          options: [
            9,
            11,
            13,
            'default',
            17,
            19,
            21,
            26,
            32,
            40
          ]
        },
      })
      .then(editor => {
        window.editor = editor;
        editor.execute('fontSize', { value: '21px' });  //字体大小设置
        editor.execute('alignment', { value: 'left' });  //字体左右中对齐
        editor.execute('fontBackgroundColor', { value: 'red' });  //字体左右中对齐
      })
      .catch(error => {
        console.error('Oops, something went wrong!');
        console.error('Please, report the following error on https://github.com/ckeditor/ckeditor5/issues with the build id and the error stack trace:');
        console.warn('Build id: l06xfzwjugq8-r7sznwq8sl7f');
        console.error(error);
      });
Logo

魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。

更多推荐