账号通
    

账号  

密码  

1410

查看

6

回复
主题:图片模型编辑器太简单,如何更换 [收藏主题] 转到:  
博飞 当前在线

858

主题

13

广播

10

粉丝
添加关注
级别:七年级

用户积分:4857 分
登录次数:660 次
注册时间:2008/6/19
最后登录:2024/5/17
博飞 发表于:2014/5/19 15:20:12   | 只看该作者 查看该作者主题 楼主 
科汛在线考试系统(NET)
asp的图片模型编辑器太简单,连个对齐方式都没有,如何更换为文章模型的编辑器
 
  支持(0) | 反对(0) 回到顶部顶端 回到底部底部
刚刚 当前离线

1852

主题

5

广播

126

粉丝
添加关注
级别:版主

用户积分:7093 分
登录次数:225 次
注册时间:2010/7/6
最后登录:2024/4/15
刚刚 发表于:2014/5/19 17:44:46   | 只看该作者 查看该作者主题 沙发 
科汛智能建站系统
可通过这个文件定义编辑器:\editor\config.js

 
  支持(0) | 反对(0) 回到顶部顶端 回到底部底部
博飞 当前在线

858

主题

13

广播

10

粉丝
添加关注
级别:七年级

用户积分:4857 分
登录次数:660 次
注册时间:2008/6/19
最后登录:2024/5/17
博飞 发表于:2014/5/19 18:38:11   | 只看该作者 查看该作者主题 藤椅 
科汛智能建站系统
具体修改哪个部分,请明示
 
  支持(0) | 反对(0) 回到顶部顶端 回到底部底部
博飞 当前在线

858

主题

13

广播

10

粉丝
添加关注
级别:七年级

用户积分:4857 分
登录次数:660 次
注册时间:2008/6/19
最后登录:2024/5/17
博飞 发表于:2014/5/19 18:39:31   | 只看该作者 查看该作者主题 板凳 
科汛在线考试系统(NET)

/*

Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.

For licensing, see LICENSE.html or http://ckeditor.com/license

*/

CKEDITOR.editorConfig = function( config )

{

config.language = 'zh-cn';//中文

    config.font_names = '宋体;楷体_GB2312;新宋体;黑体;隶书;幼圆;微软雅黑;Arial;Comic Sans MS;Courier New;Tahoma;Times New Roman;Verdana';

config.skin='kama';

config.uiColor = '#EBF2FB';

config.enterMode = CKEDITOR.ENTER_BR;

    config.shiftEnterMode = CKEDITOR.ENTER_P;

   //改变大小的最大高度

    config.resize_maxHeight = 3000;

    //改变大小的最大宽度

    config.resize_maxWidth = 3000;

    //改变大小的最小高度

    config.resize_minHeight = 250;

    //改变大小的最小宽度

    config.resize_minWidth = 650;

config.extraPlugins = 'flvPlayer';   //扩展插入视频

config.pasteFromWordIgnoreFontFace = true;

config.pasteFromWordKeepsStructure = true;

config.pasteFromWordRemoveStyle = true;

config.forcePasteAsPlainText =false ;

config.toolbar_Default =

    [

        ['Source','-','Preview','-','Templates'],

        ['Cut','Copy','Paste','PasteText','PasteFromWord','-','Print', 'SpellChecker', 'Scayt'],

        ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],

        ['Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', 'HiddenField'],

        '/',

        ['Bold','Italic','Underline','Strike','-','Subscript','Superscript'],

        ['NumberedList','BulletedList','-','Outdent','Indent','Blockquote','CreateDiv'],

        ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],

        ['Link','Unlink','Anchor'],

          ['Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak'],

        '/',

        ['Styles','Format','Font','FontSize'],

        ['TextColor','BGColor'],

        ['Maximize', 'ShowBlocks','-','About']

    ];

config.toolbar_NewsTool =

    [

        ['Source','-','Preview','-','Templates'],

        ['Cut','Copy','Paste','PasteText','PasteFromWord','-','Print', 'SpellChecker', 'Scayt'],

        ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],

        ['Link','Unlink','Anchor'],

        '/',

        ['Bold','Italic','Underline','Strike','-','Subscript','Superscript'],

        ['NumberedList','BulletedList','-','Outdent','Indent'],

        ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],

          ['Image','Flash','flvPlayer','Table','HorizontalRule','Smiley','SpecialChar'],

        '/',

        ['Styles','Format','Font','FontSize'],

        ['TextColor','BGColor'],

        ['Maximize', '-','About']

    ];

config.toolbar_Basic =

    [

        ['Source','-','Bold', 'Italic','Underline','TextColor','BGColor', '-','FontSize', 'NumberedList', 'BulletedList', '-', 'Link', '-','Image','Flash','flvPlayer','Table']

    ];

config.toolbar_Simple =

    [

        ['Source','-','Preview','-','Templates'],

        ['Cut','Copy','Paste','PasteText','PasteFromWord','-','Print', 'SpellChecker', 'Scayt'],

        ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],

        ['Link','Unlink','Anchor'],

        '/',

        ['Bold','Italic','Underline','Strike','-','Subscript','Superscript'],

        ['NumberedList','BulletedList','-','Outdent','Indent','Blockquote','CreateDiv'],

        ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],

          ['Image','Flash','Table','HorizontalRule','Smiley','SpecialChar'],

        '/',

        ['Styles','Format','Font','FontSize'],

        ['TextColor','BGColor'],

        ['Maximize', 'ShowBlocks','-','About']

    ];

   

};

 
  支持(0) | 反对(0) 回到顶部顶端 回到底部底部
博飞 当前在线

858

主题

13

广播

10

粉丝
添加关注
级别:七年级

用户积分:4857 分
登录次数:660 次
注册时间:2008/6/19
最后登录:2024/5/17
博飞 发表于:2014/5/20 9:31:05   | 只看该作者 查看该作者主题 报纸 
 
  支持(0) | 反对(0) 回到顶部顶端 回到底部底部
刚刚 当前离线

1852

主题

5

广播

126

粉丝
添加关注
级别:版主

用户积分:7093 分
登录次数:225 次
注册时间:2010/7/6
最后登录:2024/4/15
刚刚 发表于:2014/5/20 11:38:44   | 只看该作者 查看该作者主题 地板 
科汛在线商城系统(NET)
这里的修改是全局改变的
若只是把图片里编辑器风格改成文章模型那样的,这样修改下程序就可以了
\Admin\KS.Picture.asp    大概522行

点击查看原图


把Basic 改成 NewsTool
 
  支持(0) | 反对(0) 回到顶部顶端 回到底部底部
angbar 当前离线

227

主题

0

广播

1

粉丝
添加关注
级别:学前班

用户积分:201 分
登录次数:5 次
注册时间:2014/4/19
最后登录:2014/5/20
angbar 发表于:2014/5/20 15:39:20   | 只看该作者 查看该作者主题 7楼 
 
  支持(0) | 反对(0) 回到顶部顶端 回到底部底部
<上一主题 | 下一主题 >
Powered By KesionCMS Version X1
厦门科汛软件有限公司 © 2006-2016 页面执行0.25781秒 powered by KesionCMS 9.0