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

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[DRC]帖子导读插件 V 2.0 [7.1/7.2][2009.11.09]

  [复制链接]
guotianfu 发表于 2009-11-12 01:45:50 | 显示全部楼层
我要下载!
回复

使用道具 举报

lycralive 发表于 2009-11-12 02:20:42 | 显示全部楼层
下一个试试看
回复

使用道具 举报

375天、茫然 发表于 2009-11-12 03:23:21 | 显示全部楼层
http://www.mgmqq.com/thread-2328-1-1.html

后备支持!
回复

使用道具 举报

qxlyh 发表于 2009-11-12 04:13:56 | 显示全部楼层
谢了谢了谢了。。。。
回复

使用道具 举报

ad002 发表于 2009-11-12 04:24:37 | 显示全部楼层
拿下拿下。。。。
回复

使用道具 举报

祖迪亚克 发表于 2009-11-12 04:48:57 | 显示全部楼层
popuppp够意思!
赞一下!
回复

使用道具 举报

祖迪亚克 发表于 2009-11-12 05:37:54 | 显示全部楼层
本帖最后由 祖迪亚克 于 2009-11-12 06:14 编辑

他人技术,楼主修改窃取技术一流,
对坐沙发的赞一下,
楼主提供的模板来自"蓝色理想":
http://bbs.blueidea.com/thread-2933426-1-1.html
为仿腾讯弹出层效果。

演示为:
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
  5. <title>【强烈推荐】 超漂亮的仿腾讯弹出层效果(兼容主流浏览器)</title>
  6. <style>
  7. body {background: #ffffff;        color: #444;}
  8. a{        color: #09d;        text-decoration: none;        border: 0;        background-color: transparent;}
  9. body,div,q,iframe,form,h5{        margin: 0;        padding: 0;}
  10. img,fieldset { border: none 0; }
  11. body,td,textarea {        word-break: break-all;        word-wrap: break-word;        line-height:1.5;}
  12. body,input,textarea,select,button {        margin: 0;        font-size: 12px;        font-family: Tahoma, SimSun, sans-serif;}
  13. div,p,table,th,td {        font-size:1em;        font-family:inherit;        line-height:inherit;}
  14. h5{ font-size:12px;}
  15. </style>
  16. <script type="text/javascript" src="http://www.5-studio.com/wp-content/uploads/2009/06/Dialog.js"></script>
  17. <script type="text/javascript">
  18. function $(ele) {
  19.   if (typeof(ele) == 'string'){
  20.     ele = document.getElementById(ele)
  21.     if(!ele){
  22.                   return null;
  23.     }
  24.   }
  25.   if(ele){
  26.           Core.attachMethod(ele);
  27.         }
  28.   return ele;
  29. }
  30. var Core = {};
  31. Core.attachMethod = function(ele){
  32.         if(!ele||ele["$A"]){
  33.                 return;
  34.         }
  35.         if(ele.nodeType==9){
  36.                 return;
  37.         }
  38.         var win;
  39.         try{
  40.                 if(isGecko){               
  41.                         win = ele.ownerDocument.defaultView;
  42.                 }else{
  43.                         win = ele.ownerDocument.parentWindow;
  44.                 }
  45.                 for(var prop in $E){
  46.                         ele[prop] = win.$E[prop];
  47.                 }
  48.         }catch(ex){
  49.                 //alert("Core.attachMethod:"+ele)//有些对象不能附加属性,如flash
  50.         }
  51. }
  52. function zOpenD(){
  53.         var diag = new Dialog("Diag1");
  54.         diag.Width = 900;
  55.         diag.Height = 400;
  56.         diag.Title = "弹出窗口示例";
  57.         diag.URL = "http://demo.zving.com/";
  58.         diag.ShowMessageRow = true;
  59.         diag.MessageTitle = "弹出窗口示例";
  60.         diag.Message = "在这儿你可以对这个窗口的内容或功能作一些说明";
  61.         diag.OKEvent = zAlert;//点击确定后调用的方法
  62.         diag.show();
  63. }
  64. function zOpen(){
  65.         var diag = new Dialog("Diag2");
  66.         diag.Width = 900;
  67.         diag.Height = 400;
  68.         diag.Title = "弹出窗口示例";
  69.         diag.URL = "http://demo.zving.com/";
  70.         diag.OKEvent = zAlert;//点击确定后调用的方法
  71.         diag.show();
  72. }
  73. function zAlert(){
  74.                 Dialog.alert("滤爸要来了,河谐你,河谐我,河谐二十一世纪的新一代");
  75. }
  76. function zConfirm(){
  77.         Dialog.confirm('警告:您确认要XXOO吗?',function(){Dialog.alert("yeah,周末到了,正是好时候");});
  78. }
  79. function sometext(ele,n){
  80.         var strArr=["可","以","清","心","也"];
  81.         var writeStr=""
  82.         for(i=0;i<n;i++){
  83.                 index=parseInt(Math.random()*5);
  84.                 for(j=0;j<5;j++){
  85.                         str=index+j>4?index+j-5:index+j;
  86.                         writeStr+=strArr[str];
  87.                 }
  88.         }
  89.         $(ele).innerHTML=writeStr;
  90. }
  91. </script>
  92. </head>
  93. <body>
  94. <div id="div1"></div>
  95. <p> &nbsp;  &nbsp; <input type="button" value="弹出新窗口" onclick="zOpen()" />&nbsp;<input type="button" value="弹出带说明的新窗口" onclick="zOpenD()" />&nbsp;<input type="button" value="弹出信息提示对话框" onclick="zAlert()" />&nbsp;<input type="button" value="弹出选择对话框" onclick="zConfirm()" /></p>
  96. <div id="div2"></div>
  97. <script>sometext("div1",100);sometext("div2",300);</script>
  98. </body>
  99. </html>
复制代码
http://www.007.cq.cn/about/contact.html
鄙视www.7drc.com  bbs.7drc.com一下,
以为还是02年,空间1M卖1元。
以为都是傻子?牛人多的是,
以下服务器偶考虑中,
http://miao.in/detail
http://yculer.com
http://yculer.com/hostcompare.html
http://www.honkeridc.com/style/info/self2.asp
本人准备转服分坛,
对漫天要价以为别人都是傻子的人很BS,
对于在DZ官方发布的模板还要去自己论坛注册才能下载的人更BS,
对于提供的技术支持低下并以此为号头聚人的站长非常BS。
回复

使用道具 举报

38274798 发表于 2009-11-12 06:56:54 | 显示全部楼层
不错 看看啊·······
回复

使用道具 举报

ipdata 发表于 2009-11-12 07:31:50 | 显示全部楼层
下载看看罗,很不哦错?
回复

使用道具 举报

hwcn 发表于 2009-11-12 07:32:08 | 显示全部楼层
这个东西应该蛮好的·
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-16 15:56 , Processed in 0.082228 second(s), 4 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

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