ZSSRichTextEditor 设置字号
CSS 文档 fontSize 在插入点或者选中文字部分修改字体大小. 需要提供一个HTML字体尺寸 (1-7) 作为参数。
1. 在ZSSRichTextEditor.m 文件添加接口
/** font 1-7 */
- (void)setFontSize:(int)font {
NSString *normal = [NSString stringWithFormat:@"zss_editor.setFontSize(\"%d\");",font];
[self.editorView stringByEvaluatingJavaScriptFromString:normal];
}
2. ZSSRichTextEditor.js 文件中添加接口
zss_editor.setFontSize = function(aFontSize) {
document.execCommand("styleWithCSS", null, true);
document.execCommand('fontSize', false, aFontSize);
document.execCommand("styleWithCSS", null, false);
zss_editor.enabledEditingItems();
}
CSS-SetFontSize文档
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。