游客:
注册
|
登录
|
会员
|
搜索
|
统计
|
帮助
无忧脚本
»
JavaScript & VBScript & DHTML 脚本技术讨论版
» 贡献一个新浪的幻灯片,很有用啊
‹‹ 上一主题
|
下一主题 ››
投票
交易
悬赏
活动
打印
|
推荐
|
订阅
|
收藏
标题:
[推荐]
贡献一个新浪的幻灯片,很有用啊
xuqk
小恐龙
UID 63223
精华 0
积分 322
帖子 134
威望 135
阅读权限 30
注册 2006-12-28
状态 离线
#1
大
中
小
使用道具
发表于 2007-4-18 16:27
资料
个人空间
短消息
加为好友
贡献一个新浪的幻灯片,很有用啊
<style type="text/css"> <!-- body,ul,ol,li,p,form,fieldset,table,td{font-family:"宋体";} body{background:#fff;color:#000;text-align:center; margin-top:5px;} td,p,li,select,input,textarea,div{font-size:12px;} ul{list-style-type:none;} select,input{vertical-align:middle;} .f14{font-size:14px;} .lh20{line-height:20px;} a{text-decoration:underline;} a:link{color:#009;} a:visited{color:#800080;} a:hover,a:active,a:focus{color:#f00;} .clearit{clear:both;} /* 列表 */ /* 14px加点列表 */ .link14listStyle li{text-align:left;line-height:23px;font-size:14px;padding:0 0 0 9px;background:url([img]http://image2.sina.com.cn/dy/legal/2006index/news_law_hz_012.gif[/img]) no-repeat 0 50%;} /* 14px无点列表 */ .link14list li{text-align:left;line-height:23px;font-size:14px;padding:0;} /* 12px加点列表 */ .link12listStyle li{text-align:left;line-height:20px;font-size:12px;padding:0 0 0 9px;background:url([img]http://image2.sina.com.cn/dy/legal/2006index/news_law_hz_012.gif[/img]) no-repeat 0 45%;} /* 12px无点列表 */ .link12list li{text-align:left;line-height:20px;font-size:12px;padding:0;} /* 主容器 */ #wrap{width:750px;margin:0 auto;text-align:left;} /* 导航 */ #nav{width:750px; height:27px; overflow:hidden; clear:both; margin:0 0 3px 0; background:url([img]http://image2.sina.com.cn/dy/deco/2007/0208/top100_i_ws_002.gif[/img]) repeat-x;} #nav #navlogo{float:left; width:247px;} #nav ul{padding-right:18px; width:485px; float:right;} html* #nav ul{width:503px;} #nav li{float:right; width:48px; text-align:center; line-height:27px; height:27px; color:#039;} #nav a{text-decoration:none;} #nav a:link,#nav a:visited{color:#039;} #nav a:hover,#nav a:active,#nav a:focus{color:#f00;} /* banner */ .banner{height:100px;background:url([img]http://image2.sina.com.cn/dy/deco/2007/0208/top100_i_ws_003.jpg[/img]) no-repeat;} .banner h1{font-weight:normal;font-size:36px;color:#fff;font-family:"黑体";text-align:center;line-height:100px;} /* 主容器 */ #wrap{width:750px;margin:0 auto;text-align:left;} /* 播放器样式(部分) */ .itemOff{width:16px; height:14px; line-height:14px; background:#cfe6ff; border:1px #5673a8 solid; margin:0 5px 5px 0; float:left; cursor:pointer; color:#008; text-align:center;} .itemOn{width:16px; height:14px; line-height:14px; background:#fff; border:1px #5673a8 solid; margin:0 5px 5px 0; float:left; cursor:pointer; color:#008; text-align:center;} .PListImg{line-height:18px; color:#000; margin-top:15px;} .PListImg a{text-decoration:underline;} .PListImg a:link,.PListImg a:visited{color:#000;} .PListImg a:hover,.PListImg a:active{color:#f00;} .PListImg .PLDiv{width:115px; height:95px; border:1px #acacac solid; background:#fff;} .PListImg img{width:105px; height:85px; margin:5px;} --> </style> <div style="padding:3px; background:#fff; border:1px #7c97c6 solid; margin-top:5px; width:450px; overflow:hidden;"> <!-- 图片播放器 begin --> <script type="text/javascript"> <!-- function slide(src,link,text,target,attr,desc) { this.desc = desc this.src = src; this.link = link; this.text = text; this.target = target; this.attr = attr; if (document.images) { this.image = new Image(); } this.loaded = false; this.load = function() { if (!document.images) { return; } if (!this.loaded) { this.image.src = this.src; this.loaded = true; } } this.hotlink = function() { var mywindow; if (!this.link) return; if (this.target) { if (this.attr) { mywindow = window.open(this.link, this.target, this.attr); } else { mywindow = window.open(this.link, this.target); } if (mywindow && mywindow.focus) mywindow.focus(); } else { location.href = this.link; } } } function slideshow( slideshowname ) { this.name = slideshowname; this.repeat = true; this.prefetch = -1; this.image; this.textid; this.textarea; this.timeout = 5000; this.slides = new Array(); this.current = 0; this.timeoutid = 0; this.add_slide = function(slide) { var i = this.slides.length; if (this.prefetch == -1) { slide.load(); } this.slides[i] = slide; } this.play = function(timeout) { this.pause(); if (timeout) { this.timeout = timeout; } if (typeof this.slides[ this.current ].timeout != 'undefined') { timeout = this.slides[ this.current ].timeout; } else { timeout = this.timeout; } this.timeoutid = setTimeout( this.name + ".loop()", timeout); } this.pause = function() { if (this.timeoutid != 0) { clearTimeout(this.timeoutid); this.timeoutid = 0; } } this.update = function() { if (! this.valid_image()) { return; } if (typeof this.pre_update_hook == 'function') { this.pre_update_hook(); } var slide = this.slides[ this.current ]; var dofilter = false; if (this.image && typeof this.image.filters != 'undefined' && typeof this.image.filters[0] != 'undefined') { dofilter = true; } slide.load(); if (dofilter) { if (slide.filter && this.image.style && this.image.style.filter) { this.image.style.filter = slide.filter; } this.image.filters[0].Apply(); } this.image.src = slide.image.src; if (dofilter) { this.image.filters[0].Play(); } this.display_text(); if (typeof this.post_update_hook == 'function') { this.post_update_hook(); } if (this.prefetch > 0) { var next, prev, count; next = this.current; prev = this.current; count = 0; do { if (++next >= this.slides.length) next = 0; if (--prev < 0) prev = this.slides.length - 1; this.slides[next].load(); this.slides[prev].load(); } while (++count < this.prefetch); } } this.goto_slide = function(n) { if (n == -1) { n = this.slides.length - 1; } if (n < this.slides.length && n >= 0) { this.current = n; } this.update(); } this.goto_random_slide = function(include_current) { var i; if (this.slides.length > 1) { do { i = Math.floor(Math.random()*this.slides.length); } while (i == this.current); this.goto_slide(i); } } this.next = function() { if (this.current < this.slides.length - 1) { this.current++; } else if (this.repeat) { this.current = 0; } this.update(); } this.previous = function() { if (this.current > 0) { this.current--; } else if (this.repeat) { this.current = this.slides.length - 1; } this.update(); } this.shuffle = function() { var i, i2, slides_copy, slides_randomized; slides_copy = new Array(); for (i = 0; i < this.slides.length; i++) { slides_copy[i] = this.slides[i]; } slides_randomized = new Array(); do { i = Math.floor(Math.random()*slides_copy.length); slides_randomized[ slides_randomized.length ] = slides_copy[i]; for (i2 = i + 1; i2 < slides_copy.length; i2++) { slides_copy[i2 - 1] = slides_copy[i2]; } slides_copy.length--; } while (slides_copy.length); this.slides = slides_randomized; } this.get_text = function() { return(this.slides[ this.current ].text); } this.get_all_text = function(before_slide, after_slide) { all_text = ""; for (i=0; i < this.slides.length; i++) { slide = this.slides[i]; if (slide.text) { all_text += before_slide + slide.text + after_slide; } } return(all_text); } this.display_text = function(text) { if (!text) { text = this.slides[ this.current ].text; } if (this.textarea && typeof this.textarea.value != 'undefined') { this.textarea.value = text; } if (this.textid) { r = this.getElementById(this.textid); if (!r) { return false; } if (typeof r.innerHTML == 'undefined') { return false; } r.innerHTML = text; } } this.hotlink = function() { this.slides[ this.current ].hotlink(); } this.save_position = function(cookiename) { if (!cookiename) { cookiename = this.name + '_slideshow'; } document.cookie = cookiename + '=' + this.current; } this.restore_position = function(cookiename) { if (!cookiename) { cookiename = this.name + '_slideshow'; } var search = cookiename + "="; if (document.cookie.length > 0) { offset = document.cookie.indexOf(search); if (offset != -1) { offset += search.length; end = document.cookie.indexOf(";", offset); if (end == -1) end = document.cookie.length; this.current = parseInt(unescape(document.cookie.substring(offset, end))); } } } this.loop = function() { if (this.current < this.slides.length - 1) { next_slide = this.slides[this.current + 1]; if (next_slide.image.complete == null || next_slide.image.complete) { this.next(); } } else { this.next(); } this.play( ); } this.valid_image = function() { if (!this.image){ return false; } else { return true; } } this.getElementById = function(element_id) { if (document.getElementById) { return document.getElementById(element_id); } else if (document.all) { return document.all[element_id]; } else if (document.layers) { return document.layers[element_id]; } else { return undefined; } } this.set_image = function(imageobject) { if (!document.images) return; this.image = imageobject; } this.set_textarea = function(textareaobject) { this.textarea = textareaobject; this.display_text(); } this.set_textid = function(textidstr) { this.textid = textidstr; this.display_text(); } } //--> </script> <script type="text/javascript"> <!-- ss = new slideshow("ss"); ss.prefetch = 1; ss.sizelmt = true; ss.repeat = true; s = new slide(); s.src = "http://image2.sina.com.cn/dy/photo/360/2007/0418/U1473P1T360D28F8101DT20070418084634.JPG"; s.title = "弗吉尼亚理工大学充满悲痛"; s.link = "http://news.sina.com.cn/w/p/2007-04-18/055512804495.shtml"; s.desc = ""; ss.add_slide(s); s = new slide(); s.src = "http://image2.sina.com.cn/dy/photo/360/2007/0418/U1473P1T360D28F8112DT20070418084634.JPG"; s.title = "学生自发在约翰斯顿宿舍楼前献花"; s.link = "http://news.sina.com.cn/w/p/2007-04-18/055512804491.shtml"; s.desc = ""; ss.add_slide(s); s = new slide(); s.src = "http://image2.sina.com.cn/dy/photo/360/2007/0418/U1473P1T360D28F8114DT20070418084634.JPG"; s.title = "学生自发树立VT纪念碑"; s.link = "http://news.sina.com.cn/w/p/2007-04-18/055412804487.shtml"; s.desc = ""; ss.add_slide(s); s = new slide(); s.src = "http://image2.sina.com.cn/dy/photo/360/2007/0418/U1473P1T360D28F8115DT20070418084634.JPG"; s.title = "万人追思枪案死难者"; s.link = "http://news.sina.com.cn/w/p/2007-04-18/053812804344.shtml"; s.desc = ""; ss.add_slide(s); s = new slide(); s.src = "http://image2.sina.com.cn/dy/photo/360/2007/0418/U1473P1T360D28F8116DT20070418084634.JPG"; s.title = "万人追思弗吉尼亚理工大学枪案死难者"; s.link = "http://news.sina.com.cn/w/p/2007-04-18/053812804341.shtml"; s.desc = ""; ss.add_slide(s); s = new slide(); s.src = "http://image2.sina.com.cn/dy/photo/360/2007/0418/U1473P1T360D28F8117DT20070418084634.JPG"; s.title = "弗吉尼亚工学院学生为遇难同学守夜"; s.link = "http://news.sina.com.cn/w/p/2007-04-17/224112801948.shtml"; s.desc = ""; ss.add_slide(s); s = new slide(); s.src = "http://image2.sina.com.cn/dy/photo/360/2007/0418/U1473P1T360D28F8118DT20070418084634.JPG"; s.title = "弗吉尼亚工学院学生为遇难同学守夜"; s.link = "http://news.sina.com.cn/w/p/2007-04-17/224012801946.shtml"; s.desc = ""; ss.add_slide(s); s = new slide(); s.src = "http://image2.sina.com.cn/dy/photo/360/2007/0418/U1473P1T360D28F8119DT20070418084634.JPG"; s.title = "学生高举标牌表达对死难者的悼念"; s.link = "http://news.sina.com.cn/w/p/2007-04-18/055512804489.shtml"; s.desc = ""; ss.add_slide(s); s = new slide(); s.src = "http://image2.sina.com.cn/dy/photo/360/2007/0418/U1473P1T360D28F8120DT20070418084634.JPG"; s.title = "数百名记者云集校园"; s.link = "http://news.sina.com.cn/w/p/2007-04-18/055512804492.shtml"; s.desc = ""; ss.add_slide(s); s = new slide(); s.src = "http://image2.sina.com.cn/dy/photo/360/2007/0418/U1473P1T360D28F8102DT20070418084634.JPG"; s.title = "发生第一起枪击案的约翰斯顿宿舍楼"; s.link = "http://news.sina.com.cn/w/p/2007-04-18/055512804494.shtml"; s.desc = ""; ss.add_slide(s); for (var i=0; i < ss.slides.length; i++) { s = ss.slides[i]; s.target = "_blank"; } //--> </script> <table width="438" cellspacing="0"> <tr valign="top"> <td width="448" style="background:url([img]http://image2.sina.com.cn/dy/deco/2007/0208/hdtj_ws_001.gif[/img]) no-repeat 14px 17px #dedede;"> <!-- 播放器主体 bgein --> <div id="ss_img_div" style="width:406px; height:302px; margin:26px 0 0 23px; clear:both;"><a href="javascript:ss.hotlink();"><img id="ss_img" style="FILTER: blendTrans (Duration=1)" width="406" height="302" src="http://image2.sina.com.cn/dy/photo/360/2007/0418/U1473P1T360D28F8101DT20070418084634.JPG" alt=""/></a></div> <div style="margin:15px 0 17px 0; text-align:center; font-weight:bold; clear:both;" id="tt">弗吉尼亚理工大学充满悲痛</div> <table width="448" cellspacing="0" style="background:#ededed;"> <tr valign="middle" align="left"> <td width="15" height="50"></td> <td width="220"> <div class="itemOff" id="imbtn0" onClick="ss.goto_slide(0)">1</div> <div class="itemOff" id="imbtn1" onClick="ss.goto_slide(1)">2</div> <div class="itemOff" id="imbtn2" onClick="ss.goto_slide(2)">3</div> <div class="itemOff" id="imbtn3" onClick="ss.goto_slide(3)">4</div> <div class="itemOff" id="imbtn4" onClick="ss.goto_slide(4)">5</div> <div class="itemOff" id="imbtn5" onClick="ss.goto_slide(5)">6</div> <div class="itemOff" id="imbtn6" onClick="ss.goto_slide(6)">7</div> <div class="itemOff" id="imbtn7" onClick="ss.goto_slide(7)">8</div> <div class="itemOff" id="imbtn8" onClick="ss.goto_slide(8)">9</div> <div class="itemOff" id="imbtn9" onClick="ss.goto_slide(9)">10</div> </td> <td width="83" style="color:#008;"> 速度 <select name="select" style="width:45px;"> <option selected="selected" id="iter_5" onChange="javascript:document.ss_form.sp1[0].click();ss.timeout=5000" name="sp1">5秒</option> <option onChange="javascript:document.ss_form.sp1[1].click();ss.timeout=10000" name="sp1">10秒</option> </select> </td> <td width="130"> <table cellspacing="0"> <tr align="left"> <td width="29"><a href="javascript:ss.previous()"><img src="http://image2.sina.com.cn/dy/deco/2007/0208/hdtj_ws_002.gif" width="23" height="18" alt="上一张" border="0" /></a></td> <td width="29"><a href="javascript:ss.next();ss.play()"><img src="http://image2.sina.com.cn/dy/deco/2007/0208/hdtj_ws_003.gif" width="23" height="18" alt="播放" border="0" /></a></td> <td width="29"><a href="javascript:ss.pause()"><img src="http://image2.sina.com.cn/dy/deco/2007/0208/hdtj_ws_004.gif" width="23" height="18" alt="暂停" border="0" /></a></td> <td width="29"><a href="javascript:ss.next()"><img src="http://image2.sina.com.cn/dy/deco/2007/0208/hdtj_ws_005.gif" width="23" height="18" alt="下一张" border="0" /></a></td> </tr> </table> </td> </tr> </table> <!-- 播放器主体 end --> </td> </tr> </table> <script type="text/javascript"> <!-- ss.pre_update_hook = function() { sid = ss.current; title = ss.slides[sid].title; linkurl = ss.slides[sid].link; totals = ss.slides.length; sdesc = ss.slides[sid].desc; tempid = parseInt(sid) + 1; document.getElementById("tt").innerHTML = title; for (var i = 0;i < 10;i++){ document.getElementById("imbtn"+i).className = "itemOff"; } document.getElementById("imbtn"+sid).className = "itemOn"; return; } if (document.images) { ss.image = document.images.ss_img; ss.update(); ss.play(); } //--> </script> <!-- 图片播放器 end --> </div>
提示:您可以先修改部分代码再运行
我的用途就是放在自己的博客程序上,用来做相册的展示
因为完全可以实现ASP化
不过我还是喜欢MSN空间的那个图片展示
有没有朋友帮忙搞定
loveyougt
小虫
UID 53277
精华 0
积分 2
帖子 1
威望 1
阅读权限 10
注册 2006-6-18
状态 离线
#2
大
中
小
使用道具
发表于 2007-4-19 07:55
资料
个人空间
短消息
加为好友
强,好东东!!收了!
crura
爬虫
UID 53492
精华 0
积分 190
帖子 65
威望 69
阅读权限 20
注册 2006-6-23
状态 离线
#3
大
中
小
使用道具
发表于 2007-4-19 09:04
资料
个人空间
短消息
加为好友
很不错哦
秦皇也爱JS
霸王龙
网恋? 妄念!
UID 67036
精华 0
积分 2287
帖子 1283
威望 1215
阅读权限 70
注册 2007-3-27
来自 湖北武汉
状态 离线
#4
大
中
小
使用道具
发表于 2007-4-20 11:18
资料
个人空间
短消息
加为好友
<SCRIPT type=text/javascript> <!-- var focus_width=240 var focus_height=190 var text_height=21 var swf_height = focus_height+text_height var pics='http://www.shuihan.com/attachments/month_0606/Img001.jpg|http://www.shuihan.com/attachments/month_0606/Img002.jpg|http://www.shuihan.com/attachments/month_0606/Img003.jpg|http://www.shuihan.com/attachments/month_0606/Img004.jpg|http://www.shuihan.com/attachments/month_0606/Img005.jpg|http://www.shuihan.com/attachments/month_0606/Img006.jpg|http://www.shuihan.com/attachments/month_0606/Img007.jpg' var links='http://2006.sohu.com/s2006/0909/s243370602/|http://sports.sohu.com/nba.shtml|http://2006.sohu.com/s2006/0935/s243381436/|http://2006.sohu.com/s2006/0909/s243370583/|http://2006.sohu.com/20060619/n243802057.shtml|http://61.135.131.68/3de33a49ed6e088bb1f8bc724222e8b5.php|http://www.it656.com/greatwall/minisite/nb1105/nb.html' var texts='大罗助攻阿德得分 巴西2-0澳大利亚|正在直播NBA总决赛-热火VS小牛|亨利建功球队难获胜 亚洲红魔1-1平法国|日本0-0克罗地亚 两队出线征途艰难|巴西大将向搜狐致意|安利纽崔莱邀请你一起健康跑!|长城电脑,清凉暑季,理性选择' document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+ focus_width +'" height="'+ swf_height +'">'); document.write('<param name="allowScriptAccess" value="sameDomain"><param name="movie" value="http://www.shuihan.com/attachments/month_0606/focus.swf"> <param name="quality" value="high"><param name="bgcolor" value="#CCCCCC">'); document.write('<param name="menu" value="false"><param name=wmode value="opaque">'); document.write('<param name="FlashVars" value="pics='+pics+'&links='+links+'&texts='+texts+'&borderwidth='+focus_width+'&borderheight='+focus_height+'&textheight='+text_height+'">'); document.write('<embed src="http://www.shuihan.com/attachments/month_0606/focus.swf" wmode="opaque" FlashVars="pics='+pics+'&links='+links+'&texts='+texts+'&borderwidth='+focus_width+'&borderheight='+focus_height+'&textheight='+text_height+'" menu="false" ?bgcolor="#ffffff" quality="high" width="'+ focus_width +'" height="'+ swf_height +'" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />'); document.write('</object>'); //--> </SCRIPT>
提示:您可以先修改部分代码再运行
flash外壳
[[i] 本帖最后由 秦皇也爱JS 于 2007-4-20 11:22 编辑 [/i]]
"我要印"印刷商务平台
和我聊聊
自从一见桃花后,直至如今更不疑!
fishbone
小恐龙
UID 20322
精华 0
积分 214
帖子 121
威望 118
阅读权限 30
注册 2004-11-28
来自 Zhejiang
状态 离线
#5
大
中
小
使用道具
发表于 2007-4-20 13:16
资料
个人空间
短消息
加为好友
好,收了,谢了
dron
超级版主
UID 19294
精华
4
积分 6055
帖子 3156
威望 3461
阅读权限 150
注册 2004-11-9
来自 中国福建
状态 离线
#6
大
中
小
使用道具
发表于 2007-4-20 14:04
资料
个人空间
短消息
加为好友
呵, 这玩意我也做过。。
功能比较简单
http://ucren.com/vjbox/descripti ... /PicturePlayer.html
webUI 框架:
http://widgets.ucren.com
(4.0已发布)
桌面:
http://i.ucren.com
博客:
http://ucren.com/blog/
jaogun
爬虫
UID 50445
精华 0
积分 80
帖子 33
威望 54
阅读权限 20
注册 2006-4-19
状态 离线
#7
大
中
小
使用道具
发表于 2007-4-23 21:35
资料
个人空间
短消息
加为好友
收下了,感觉楼主
object
大恐龙
UID 47936
精华 0
积分 538
帖子 295
威望 255
阅读权限 50
注册 2006-3-6
来自 浙江温州
状态 离线
#8
大
中
小
使用道具
发表于 2007-4-24 11:02
资料
个人空间
主页
短消息
加为好友
dron封装的还不错
有用过你写的东东~
可别追究版权哦。
做学问要在不疑处有疑;待人要在有疑处不疑.
网站推广、增加网站流量
戒烟、戒酒、戒赌、戒毒
tingwei
小恐龙
UID 67035
精华 0
积分 257
帖子 135
威望 142
阅读权限 30
注册 2007-3-27
状态 离线
#9
大
中
小
使用道具
发表于 2007-4-25 09:09
资料
个人空间
短消息
加为好友
好东西,大家造!
Mapleleaf123
小恐龙
UID 47623
精华 0
积分 279
帖子 116
威望 137
阅读权限 30
注册 2006-2-28
状态 离线
#10
大
中
小
使用道具
发表于 2007-4-25 09:43
资料
个人空间
短消息
加为好友
好东西
zhuangyan
小恐龙
UID 41638
精华 0
积分 281
帖子 119
威望 132
阅读权限 30
注册 2005-11-18
状态 离线
#11
大
中
小
使用道具
发表于 2007-4-25 16:31
资料
个人空间
主页
短消息
加为好友
都不错
est
大恐龙
UID 42828
精华 0
积分 669
帖子 223
威望 442
阅读权限 50
注册 2005-11-30
状态 离线
#12
大
中
小
使用道具
发表于 2007-4-26 00:14
资料
个人空间
短消息
加为好友
FILTER: blendTrans (Duration=1)
用的滤镜
投票
交易
悬赏
活动
无忧脚本
无忧脚本技术讨论区
> 原创文章 & 讨论汇总版
> Html & XHtml & CSS 网页制作讨论版
> JavaScript & VBScript & DHTML 脚本技术讨论版
> XML & XSL & XPath & VML 网页技术讨论版
> ASP & Access & SQL Server 后台编程讨论版
> PHP & MySQL 后台编程讨论版
> JSP & Java & J2SE 后台编程讨论版
> .Net 相关技术讨论版
> Web 服务器技术
> Flex & Flash 技术讨论版
> Web UI & 图形技术讨论版
无忧脚本资源服务区
> 经典代码、教程资源库
> 参考手册、常用软件资源库
> 无忧合租服务器讨论版
无忧脚本休闲区
> 休闲留言板
> 招聘求职、网站推荐、广告信息版
> 无忧站务管理版
> 垃圾帖回收站
控制面板首页
编辑个人资料
积分交易
公众用户组
好友列表
升级个人空间
基本概况
流量统计
客户软件
发帖量记录
论坛排行
主题排行
发帖排行
积分排行
在线时间
管理团队
当前时区 GMT+8, 现在时间是 2008-11-22 02:59
苏ICP备05080427号
Powered by
Discuz!
5.5.0
© 2001-2007
51JS.COM
Processed in 0.175901 second(s), 6 queries , Gzip enabled
TOP
清除 Cookies
-
联系我们
-
无忧脚本
-
Archiver
-
WAP