我设置默认字体大小为30;
$('#QBody').froalaEditor({ fontSizeDefaultSelection: '30', fontSizeSelection: true });
当编辑器是第一次加载,我第一次点击输入,然后改变编辑器的字体大小立即我认为默认编辑器的字体大小已经从其他地方调整。
prdp8dxp1#
你的HTML标签可能有改变font-size属性的CSS样式。尝试将其设置为你需要指定的东西,例如,如果你使用textarea,我会像这样内联:
<textarea id="QBody" style="font-size: 30px;" />
bxfogqkk2#
将其添加到froala编辑器选项中。这是由官方froala技术支持建议的。
events: { initialized: function(editor){ // console.log("editor", editor._editor) //here we are setting the default values editor._editor.events.focus(); editor._editor.fontSize.apply('16px'); editor._editor.fontFamily.apply('Open Sans Condensed, sans-serif'); editor._editor.lineHeight.apply('1.5'); editor._editor.colors.text('#4a4a4a'); } }
2条答案
按热度按时间prdp8dxp1#
你的HTML标签可能有改变font-size属性的CSS样式。尝试将其设置为你需要指定的东西,例如,如果你使用textarea,我会像这样内联:
bxfogqkk2#
将其添加到froala编辑器选项中。
这是由官方froala技术支持建议的。