如何在 Quill 的工具栏中添加对齐按钮?
How can I add a align buttons to the toolbar in Quill?
我正在尝试将对齐按钮添加到 Quill 编辑器工具栏。
工具栏 documentation 不是很详细。它显示了如何为对齐选项设置 select,但我想要一组并排的切换按钮。这可能吗?
你可以做 align: 'center'
,类似于 docs. Here's a working example: https://codepen.io/anon/pen/PKdEgN
中的 header: 3
示例
var quill = new Quill('#editor-container', {
modules: {
toolbar: [
[{ align: '' }, { align: 'center' }, { align: 'right' }, { align: 'justify' }]
]
},
placeholder: 'Compose an epic...',
theme: 'snow' // or 'bubble'
});
我正在尝试将对齐按钮添加到 Quill 编辑器工具栏。
工具栏 documentation 不是很详细。它显示了如何为对齐选项设置 select,但我想要一组并排的切换按钮。这可能吗?
你可以做 align: 'center'
,类似于 docs. Here's a working example: https://codepen.io/anon/pen/PKdEgN
header: 3
示例
var quill = new Quill('#editor-container', {
modules: {
toolbar: [
[{ align: '' }, { align: 'center' }, { align: 'right' }, { align: 'justify' }]
]
},
placeholder: 'Compose an epic...',
theme: 'snow' // or 'bubble'
});