网站地图    收藏   

主页 > 前端 > 网页编辑器 >

fckeditor 修改记录添加行距功能插件_网页编辑器

来源:自学PHP网    时间:2014-12-14 21:28 作者: 阅读:

[导读] 在 fck中添加行距 功能插件,需要的朋友可以参考下。...

fckconfig.js 中修改
添加
复制代码 代码如下:

FCKConfig.LineHeights = '100%;150%;200%;250%;300%' ;
'Size' :
{
Element : 'span',
Styles : { 'font-size' : '#("Size","fontSize")' },
Overrides : [ { Element : 'font', Attributes : { 'size' : null } } ]
},

这个下面添加
复制代码 代码如下:

'LineHeight' :
{
Element : 'span',
Styles : { 'line-height' : '#("Font")' },
Overrides : [ { Element : 'font', Attributes : { 'size' : null } } ]
},

FCKConfig.ToolbarSets 里添加
'LineHeight'

开启插件
FCKConfig.Plugins.Add( 'LineHeight','zh-cn' ) ;
注意'LineHeight' 这个字母的大小写。
在fckeditor\editor\plugins文件夹下上传LineHeight目录
在fckeditor\editor\js 上传fckeditorcode_gecko.js和fckeditorcode_ie.js
这两个js 主要是解决跳出 未知工具栏项目

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论