Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

后台Discuz 代码大全,特送一些新手(for2.x、3.x、4.x)

[复制链接]
 楼主| 1223 发表于 2005-11-14 11:20:26 | 显示全部楼层
原帖由 lkkxm 于 2005-11-14 10:38 发表
最好能把图标在论坛如何显示的做法也说下,谢谢。


下边举二个加入彩虹字和打印机字的例子:

大家可以参照来更改参数。


打开bbcode.js
最后加上

  1. function crfont() {
  2.         if (helpmode){
  3.                 alert(crfont_help);
  4.         }
  5.          else if (document.selection && document.selection.type == "Text") {
  6.                   var range = document.selection.createRange();
  7.                   range.text = "[crfont]" + range.text + "[/crfont]";
  8.         }
  9.         else if (advmode) {
  10.                 AddTxt="[crfont] [/crfont]";
  11.                 AddText(AddTxt);
  12.         } else {  
  13.                 txt=prompt(crfont_normal,"");   
  14.                 if(txt!=null) {            
  15.                         AddTxt="\r[crfont]"+txt;
  16.                         AddText(AddTxt);
  17.                         AddText("[/crfont]");
  18.                 }
  19.         }
  20. }

  21. function typewriter() {
  22.         if (helpmode){
  23.                 alert(typewriter_help);
  24.         }
  25.          else if (document.selection && document.selection.type == "Text") {
  26.                 var range = document.selection.createRange();
  27.                 range.text = "[typewriter" + range.text + "[/typewriter]";
  28.         }
  29.          else if (advmode) {
  30.                 AddTxt="[typewriter] [/typewriter]";
  31.                 AddText(AddTxt);
  32.         } else {  
  33.                 txt=prompt(typewriter_normal,text_input);   
  34.                 if(txt!=null) {            
  35.                         AddTxt="\r[typewriter]"+txt;
  36.                         AddText(AddTxt);
  37.                         AddText("[/typewriter]");
  38.                 }      
  39.         }
  40. }
复制代码


在post_bbinsert.htm

里查找:

  1. var list_normal_input = "{lang post_discuzcode_list_normal_input}";
复制代码


在后面加上:

  1.         var crfont_help = "{lang post_discuzcode_crfont}\n\n{lang post_discuzcode_crfont_comment}";
  2.         var crfont_normal = "{lang post_discuzcode_crfont_normal}";
  3.         var typewriter_help = "{lang post_discuzcode_typewriter}\n\n{lang post_discuzcode_typewriter_comment}";
  4.         var typewriter_normal = "{lang post_discuzcode_typewriter_normal}";
复制代码


查找:

  1. <a href="javascript:list()"><img src="{IMGDIR}/bb_list.gif" border="0" alt="{lang post_discuzcode_list}"></a>
复制代码


在后面加上:

  1.         <a href="javascript:crfont()"><img src="{IMGDIR}/bb_crfont.gif" border="0" alt="{lang post_discuzcode_crfont}"></a>
  2.         <a href="javascript:typewriter()"><img src="{IMGDIR}/bb_tt.gif" border="0" alt="{lang post_discuzcode_typewriter}"></a>
复制代码


在templates/default/templates.lang.php
查找:

  1. 'post_discuzcode_center' => '居中对齐',
复制代码


前面加上:

  1.         'post_discuzcode_crfont' => '插入彩虹文字',
  2.         'post_discuzcode_crfont_comment' => '给标签所包围的文本加上彩虹文字。\n例如:[crfont]彩虹文字[/crfont]',
  3.         'post_discuzcode_crfont_normal' => '请输入要用彩虹文字特效显示的文字。',        
  4.         'post_discuzcode_typewriter' => '插入打字机特效文字',
  5.         'post_discuzcode_typewriter_comment' => '给标签所包围的文本加上下划线。\n例如:[typewriter]打字机 [/typewriter]',
  6.         'post_discuzcode_typewriter_normal' => '请输入要用打字机特效显示的文字。',        
复制代码


css.htm 模板里找到
  1. </style>
复制代码

在前面 加

  1. .rainbow{ behavior:url(./include/rainbow.htc) }
  2. .typewriter{ behavior:url(./include/typewriter.htc) }
复制代码

别忘了, 还要在后台加下  Discuz! 代码
把下面的附件 放在 inlude 里就是了

上传图片到模板目录下

更新缓存

以上是字体,所以要上传字体文件,对于其他一些非字体标签,则不需要。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

dichli 发表于 2005-11-14 12:23:09 | 显示全部楼层
这个帖子不是他收集的,我早就看过了
回复

使用道具 举报

Shadowsong 发表于 2005-11-26 16:48:40 | 显示全部楼层
弓虽!
回复

使用道具 举报

tianjin263 发表于 2005-11-27 05:50:07 | 显示全部楼层
顶了!
回复

使用道具 举报

祖迪亚克 发表于 2005-12-7 14:30:34 | 显示全部楼层
继续学习!
回复

使用道具 举报

xmzyy 发表于 2005-12-14 23:32:53 | 显示全部楼层
盗用我的,缴钱。
回复

使用道具 举报

d2d3 发表于 2005-12-15 11:35:06 | 显示全部楼层
顶到脱
回复

使用道具 举报

鹭岛小子 发表于 2005-12-17 13:25:11 | 显示全部楼层
有谁flash怎么能啊?我的插入 Flash: http://。。。 就变成链接了。。。。
回复

使用道具 举报

分光光度计 发表于 2006-1-7 18:59:11 | 显示全部楼层
好,顶
回复

使用道具 举报

xhxhx 发表于 2006-1-12 13:41:24 | 显示全部楼层
按此设置怎么会出现这样的情况,请赐教。

回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2025-1-22 09:23 , Processed in 0.030031 second(s), 3 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表