如何使用QuillJS将自定义字体大小添加到工具栏?我尝试了两种方法:
// Initiate the editor
let toolbarOptions = [
['bold', 'italic', 'underline', 'strike'],
[{ 'align': [] }],
[{ 'size': ['10px', '20px', '80px'] }],
[{ 'color': ['#FFF'] }]
];
this.editor = new Quill('#executive-control-editor', {
modules: {
toolbar: toolbarOptions
},
theme: 'snow'
});
和
<div id="toolbar">
<span class="ql-formats">
<button class="ql-bold"></button>
<button class="ql-italic"></button>
<button class="ql-underline"></button>
<button class="ql-strike"></button>
</span>
<span class="ql-formats">
<select class="ql-align"></select>
</span>
<span class="ql-format-group">
<select title="Size" class="ql-size">
<option value="10px">Small</option>
<option value="13px">Normal</option>
<option value="18px">Large</option>
<option value="32px">Huge</option>
</select>
</span>
<span class="ql-formats">
<button class="ql-image"></button>
</span>
</div>
然而,它们都不起作用。这里有什么我想念的吗?我也试过从值中删除“px”;仍然没有。
答案 0 :(得分:16)
上面接受的答案对我不起作用,但让我走上正轨。
以下是我必须要做的事情,让文本编辑器设置自定义字体大小(并为底层值而不是CSS类设置font-size的内联样式):
var Size = Quill.import('attributors/style/size');
Size.whitelist = ['14px', '16px', '18px'];
Quill.register(Size, true);
var toolbarOptions = [
[{ 'size': ['14px', '16px', '18px'] }],
];
var quill = new Quill("#quillElementSelector", {
theme: 'snow',
modules: {
toolbar: toolbarOptions
}
});
我还必须修改我的CSS以覆盖工具栏下拉列表上的标签。请注意,CSS选择器中的“数据值”值必须与上面指定的值匹配。
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="14px"]::before {
content: 'Normal';
font-size: 14px !important;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="16px"]::before {
content: 'Large';
font-size: 16px !important;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="18px"]::before {
content: 'Huge';
font-size: 18px !important;
}
答案 1 :(得分:2)
现在有点奇怪,所以我可以将它添加到Quill配置中。但就目前而言,它不起作用的原因是Quill默认使用类进行大小调整,你想要的是内联样式。您可以使用以下命令进行更改:
var Size = Quill.import('attributors/style/size');
Quill.register(Size, true);
// Rest is the same
var editor = new Quill('#editor');
答案 2 :(得分:1)
Pi带@mfranchi和@pmarreck,我得到了带有以下内容的标准“ MS Word”字体大小列表:
const fontSizeArr = ['8px','9px','10px','12px','14px','16px','20px','24px','32px','42px','54px','68px','84px','98px'];
var Size = Quill.import('attributors/style/size');
Size.whitelist = fontSizeArr;
Quill.register(Size, true);
var toolbarOptions = [
[{ 'size': fontSizeArr }],
];
const quill = new Quill("#quillElementSelector", {
modules: {
toolbar: toolbarOptions,
},
theme: 'snow',
});
这是我发现的this鹅毛笔问题的纯CSS解决方案:
.ql-snow{
.ql-picker{
&.ql-size{
.ql-picker-label,
.ql-picker-item{
&::before{
content: attr(data-value) !important;
}
}
}
}
}