找回密码
 注册
广告投放 虚位以待【阿里云】2核2G云新老同享 99元/年,续费同价做网站就用糖果主机-sugarhosts.comJtti.com-新加坡服务器,美国服务器,香港服务器
查看: 263|回复: 4

几个小代码!

[复制链接]
发表于 2007 年 7 月 11 日 15:04:49 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

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

×
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  4. <title>仿蓝色理想网站的导航菜单</title>
  5. </head>
  6. <style type="text/css">
  7. #dNavBar{
  8. background-color:#ffffff;
  9. }
  10. #dNavBar li{
  11. list-style-type:none;
  12. float:left;
  13. width:84px;
  14. height:28px;
  15. line-height:28px;
  16. font-size:12px;
  17. color:#FFFFFF;
  18. border:3px solid #ffffff;
  19. background-color:#86C2FF;
  20. text-align:center;
  21. display:block;
  22. cursor:pointer;
  23. }
  24. #subMenu{
  25. background-color:#0000FF;
  26. width:500px;
  27. border-left:3px solid #ffffff;
  28. border-right:3px solid #ffffff;
  29. height:29px;
  30. line-height:29px;
  31. color:#FFFFFF;
  32. font-size:12px;
  33. padding-left:10px;
  34. }
  35. body {
  36. margin-left: 0px;
  37. margin-top: 0px;
  38. margin-right: 0px;
  39. margin-bottom: 0px;
  40. }
  41. a:link {
  42. color: #FFFFFF;
  43. text-decoration: none;
  44. }
  45. a:hover{
  46. color: #FFFFFF;
  47. text-decoration: none;
  48. }
  49. a:visited{
  50. color: #FFFFFF;
  51. text-decoration: none;
  52. }
  53. </style>
  54. <script language="javascript">
  55. function ShowMenu()
  56. {
  57. var barCTT=document.getElementById("dNavBar")
  58. var liArr=barCTT.getElementsByTagName("li")
  59. var links=new Array()
  60. links[0]="<a href='#'>当前位置:首页"
  61. links[1]="<a href='#'>项目一</a> | <a href='#'>项目二</a> | <a href='#'>项目三</a> | <a href='#'>项目四</a>"
  62. links[2]="<a href='#'>项目一</a> | <a href='#'>项目二</a> | <a href='#'>项目三</a>"
  63. links[3]="<a href='#'>项目一</a> | <a href='#'>项目二</a> | <a href='#'>项目三</a> | <a href='#'>项目四</a> | <a href='#'>项目五</a>"
  64. links[4]="<a href='#'>项目一</a> | <a href='#'>项目二</a>"
  65. links[5]="<a href='#'>项目一</a> | <a href='#'>项目二</a> | <a href='#'>项目三</a>"
  66. links[6]="<a href='#'>项目一</a> | <a href='#'>项目二</a>"
  67. links[7]="<a href='#'>项目一</a> | <a href='#'>项目二</a>"
  68. links[8]="<a href='#'>项目一</a> | <a href='#'>项目二</a>"
  69. links[9]="<a href='#'>项目一</a> | <a href='#'>项目二</a>"
  70. links[10]="<a href='#'>项目一</a>| <a href='#'>项目二</a>"
  71. links[11]="<a href='#'>项目一</a> | <a href='#'>项目二</a>"
  72. links[12]="<a href='#'>项目一</a> | <a href='#'>项目二</a>"
  73. for (i=0;i<liArr.length;i++)
  74. {
  75. liArr[i].onclick=function()
  76. {
  77. selectThis(this,liArr,links)
  78. }
  79. }
  80. }
  81. function selectThis(indexObj,allLi,infoArr)
  82. {
  83. var index=0;
  84. for (i=0;i<allLi.length;i++)
  85. {
  86. allLi[i].style.border="3px solid #ffffff";
  87. allLi[i].style.backgroundColor="#86C2FF";
  88. allLi[i].style.height="28px";
  89. if (indexObj==allLi[i])
  90. {
  91. index=i;
  92. }
  93. }
  94. indexObj.style.borderBottom="0px solid #666688";
  95. indexObj.style.backgroundColor="#0000FF";
  96. indexObj.style.height="31px";
  97. document.getElementById("subMenu").innerHTML=infoArr[index];
  98. }
  99. </script>
  100. <body onLoad="ShowMenu()">
  101. <div id="dNavBar" style="float:none; width:560px;"><li>首页</li><li>娱乐快报</li><li>音乐天地</li><li>极品FLASH</li>
  102. </div>
  103. <div id="subMenu">站务公告</div>
  104. </body>
  105. </html>
复制代码

  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
  4. <title>模仿Flash AS效果的导航菜单</title>
  5. <style type="text/css">
  6. <!--
  7. a:link,a:visited { text-decoration: none; color: #666666 }
  8. a:hover { text-decoration: underline }
  9. #hor1 {
  10. position:absolute;
  11. left:320px;
  12. top:20px;
  13. width:220px;
  14. height:20px;
  15. z-index:1;
  16. background-color: #999900;
  17. }
  18. #hor2 {
  19. position:absolute;
  20. left:320px;
  21. top:40px;
  22. width:220px;
  23. height:20px;
  24. z-index:2;
  25. background-color: #FFCC00;
  26. }
  27. #hor3 {
  28. position:absolute;
  29. left:320px;
  30. top:60px;
  31. width:220px;
  32. height:20px;
  33. z-index:3;
  34. background-color: #99CC00;
  35. }
  36. #board1 {
  37. position:absolute;
  38. left:320px;
  39. top:40px;
  40. width:220px;
  41. height:120px;
  42. z-index:-100;
  43. background-color: #333333;
  44. visibility: hidden;
  45. }
  46. body,td,th {
  47. font-family: Verdana, Arial, Helvetica, sans-serif;
  48. font-size: 12px;
  49. color: #FFFFFF;
  50. font-weight: bold;
  51. }
  52. body {
  53. background-color: #666666;
  54. }
  55. #board2 {
  56. position:absolute;
  57. left:320px;
  58. top:60px;
  59. width:220px;
  60. height:120px;
  61. z-index:-90;
  62. background-color: #333333;
  63. visibility: hidden;
  64. }
  65. #board3 {
  66. position:absolute;
  67. width:220px;
  68. height:120px;
  69. z-index:-80;
  70. left: 320px;
  71. top: 80px;
  72. background-color: #333333;
  73. visibility: hidden;
  74. }
  75. #hor4 {
  76. position:absolute;
  77. left:320px;
  78. top:80px;
  79. width:220px;
  80. height:20px;
  81. z-index:4;
  82. background-color: #99CCCC;
  83. }
  84. #board4 {
  85. position:absolute;
  86. left:320px;
  87. top:100px;
  88. width:220px;
  89. height:120px;
  90. z-index:-70;
  91. background-color: #333333;
  92. visibility: hidden;
  93. }

  94. -->
  95. </style>
  96. <script type="text/javascript">
  97. lastNo=0
  98. function re(menu_no){
  99. if(lastNo!=menu_no){
  100. cur=menu_no+1
  101. lastNo=menu_no
  102. rest()
  103. }else{
  104. cur=100
  105. }
  106. document.getElementById("board"+menu_no).style.visibility="visible"
  107. }
  108. function rest(){
  109. for(i=1;i<=4;i++){
  110. document.getElementById("hor"+i).style.top=20*i;
  111. document.getElementById("board"+i).style.visibility="hidden"
  112. }
  113. menu_num=4;
  114. act=1
  115. height=120+20
  116. speed=0;
  117. posY=0;
  118. }
  119. function huke(){
  120. if(act==1&&cur<100){
  121. speed=(height-posY)*0.69+speed*0.6
  122. posY+=speed
  123. for(i=cur;i<=menu_num;i++){
  124. document.getElementById("hor"+i).style.top=posY+(i-2)*20
  125. }
  126. if(Math.abs(height-posY)<0.5){
  127. for(i=cur;i<=menu_num;i++){
  128. document.getElementById("hor"+i).style.top=height+(i-2)*20
  129. }
  130. act=0
  131. }
  132. setTimeout("huke()",50)
  133. }
  134. }

  135. </script>
  136. </head>
  137. <body>
  138. <div id="hor1" onclick="re(1);huke()">News</div>
  139. <div id="hor2" onclick="re(2);huke()">Populor</div>
  140. <div id="hor3" onclick="re(3);huke()">Sports</div>
  141. <div id="hor4" onclick="re(4);huke()">Woman</div>
  142. <div id="board1">1.由AS而想起Javascript2.用Jscript写ASP有没有先天性的不足?3.没有了。</div>
  143. <div id="board2">1.xhtml+css真的来了吗?2.Flash取代传统网站3.Flash何时才能连接数据库?</div>
  144. <div id="board3">1.程序员与小姐的10个相同。2.中国的程序员与中国的足球?</div>
  145. <div id="board4">1.二十一世纪最缺的是什么?人才
  146. <a href="http://linkweb.cn/js" target="_blank">http://linkweb.cn/js</a></div>
  147. </body>
  148. </html>
复制代码
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
 楼主| 发表于 2007 年 7 月 11 日 15:07:10 | 显示全部楼层
【腾讯云】2核2G云服务器新老同享 99元/年,续费同价
  1. <html>

  2. <head>

  3. <title>类似于Flash制作的一个图片展示效果</title>


  4. <meta http-equiv="imagetoolbar" content="no">

  5. <style type="text/css">

  6. body {cursor:crosshair;margin:0; padding:0; position:absolute; overflow:hidden; background:#222; left:0; top:0; width:100%; height:100%;zIndex:-2;}

  7. </style>

  8. <base href=http://www.phpfans.net//jscode/>

  9. <script type="text/javascript">

  10. window.onerror = new Function("return true");

  11. screen.bufferDepth = 16;

  12. document.onselectstart = function () { return false; }



  13. ////////////////////////////

  14. var NX     = 3;

  15. var NY     = 3;

  16. var SP     = 20;

  17. var DELAY  = 96;

  18. ////////////////////////////



  19. var object = new Array();

  20. var nI     = 0;

  21. var run    = false;

  22. var xrun   = 0;

  23. var dR     = 1;

  24. var iW     = 0;

  25. var iH     = 0;

  26. var oH     = 0;

  27. var oW     = 0;



  28. function CObj(N,y,x){



  29. this.obj = document.createElement("span");

  30. this.obj.onclick = new Function("object["+N+"].GE1()");

  31. this.obj.onmousedown = new Function("return false;");

  32. this.obj.style.cursor = "pointer";

  33. this.obj.style.position = "absolute";

  34. this.img = document.createElement("img");

  35. this.img.style.position = "absolute";

  36. this.img.src = IMGSRC[N%nI].src;

  37. this.obj.appendChild(this.img);

  38. IMGBOX.appendChild(this.obj);



  39. this.object = new Array();

  40. this.x      = x;

  41. this.y      = y;

  42. this.N      = N;

  43. this.W      = 0;

  44. this.H      = 0;

  45. this.L      = 0;

  46. this.T      = 0;



  47. function CImg(Parent,y,x){

  48.   this.Parent = Parent;



  49.   this.obj = document.createElement("span");

  50.   this.obj.style.position="absolute";

  51.   this.obj.style.overflow="hidden";

  52.   this.obj.style.cursor = "pointer";

  53.   this.img = document.createElement("img");

  54.   this.img.style.position = "absolute";

  55.   this.img.src = IMGSRC[N%nI].src;

  56.   this.obj.appendChild(this.img);

  57.   this.Parent.obj.appendChild(this.obj);



  58.   this.N   = Parent.N;

  59.   this.x   = x;

  60.   this.y   = y;

  61.   this.W   = 0;

  62.   this.H   = 0;

  63.   this.L   = 0;

  64.   this.T   = 0;

  65.   this.dx  = 0;

  66.   this.dy  = 0;

  67.   this.px  = 0;

  68.   this.py  = 0;

  69.   this.dw  = 0;

  70.   this.dh  = 0;

  71.   this.pw  = 0;

  72.   this.ph  = 0;

  73.   this.ipx = 0;

  74.   this.ipy = 0;

  75.   this.idx = 0;

  76.   this.idy = 0;



  77.   this.GE2 = function (){

  78.    with(this){

  79.     px -= dx * dR;

  80.     py -= dy * dR;

  81.     pw += dw * dR;

  82.     ph += dh * dR;

  83.     ipx -= idx * dR;

  84.     ipy -= idy * dR;



  85.     with(obj.style){

  86.      left   = Math.round(px);

  87.      top    = Math.round(py);

  88.      width  = Math.round(pw)+1;

  89.      height = Math.round(ph)+1;

  90.      if(dR==-1)if(pw<=W+1)obj.style.visibility="hidden";

  91.     }



  92.     with(img.style){

  93.      left   = Math.round(ipx-oW);

  94.      top    = Math.round(ipy-oH);

  95.     }



  96.     if(++xrun>=NX*NY*SP){

  97.      xrun=0;

  98.      run=false;

  99.      if(dR==-1)Parent.obj.style.zIndex = 0;

  100.      dR = -dR;

  101.     }

  102.    }

  103.   }



  104.   this.GE1 = function (N1,N2){

  105.    with(this){

  106.     if(dR==1){

  107.      px  = L;

  108.      py  = T;

  109.      dx  = ((Parent.L + L) - (x * Parent.W)) / SP;

  110.      dy  = ((Parent.T + T) - (y * Parent.H)) / SP;

  111.      pw  = W;

  112.      ph  = H;

  113.      dw  = (Parent.W - W) / SP;

  114.      dh  = (Parent.H - H) / SP;

  115.      ipx = -L;

  116.      ipy = -T;

  117.      idx = ((x * Parent.W) - L) / SP;

  118.      idy = ((y * Parent.H) - T) / SP;

  119.     }

  120.     obj.style.visibility="visible";

  121.     if(img.height>document.body.offsetHeight)oH=(img.height-document.body.offsetHeight)/2; else oH = 0;

  122.     if(img.width>document.body.offsetWidth/2)oW=(img.width-(document.body.offsetWidth/2))/2; else oW = 0;

  123.     for(i=0;i<SP;i++) setTimeout("object["+N1+"].object["+N2+"].GE2()",16*i);

  124.    }

  125.   }



  126.   this.DOOT = function (){

  127.    with(this){

  128.     W =  Parent.W  / NX;

  129.     H =  Parent.H / NY;

  130.     L =  x * W;

  131.     T =  y * H;

  132.    }

  133.   }

  134. }



  135. var  k = 0;

  136. for(var i=0;i<NY;i++)

  137.   for(var j=0;j<NX;j++)

  138.    this.object[k++] = new CImg(this,i,j);



  139. this.GE1  = function (){

  140.   with(this){

  141.    if(!run){

  142.     TXTBOX.innerHTML = "<div style='margin:2%'>"+TXTSRC[N%nI].innerHTML+"</div>";

  143.     run = true;

  144.     obj.style.zIndex = 1;

  145.     for(var i=0;i<NX*NY;i++) setTimeout("object["+N+"].object["+i+"].GE1("+N+","+i+")",i*DELAY);

  146.    }

  147.   }

  148. }



  149. this.DOOT = function (){

  150.   with(this){

  151.    if(img.width<iW)iW=img.width;

  152.    if(img.height<iH)iH=img.height;

  153.    with(obj.style){

  154.     W = width  = iW  / NX;

  155.     H = height = iH / NY;

  156.     L = left   = x * W;

  157.     T = top    = y * H;

  158.    }

  159.    with(img.style){

  160.     width  = W;

  161.     height = H;

  162.    }

  163.    for(var i in object) object[i].DOOT();

  164.   }

  165. }

  166. }





  167. onload = function() {

  168. IMGSRC = document.getElementById("imgsrc").getElementsByTagName("img");

  169. TXTSRC = document.getElementById("txtsrc").getElementsByTagName("div");

  170. IMGBOX = document.getElementById("imgbox");

  171. TXTBOX = document.getElementById("txtbox");

  172. CENTER = document.getElementById("center");

  173. iH = document.body.offsetHeight;

  174. iW = document.body.offsetWidth/2;

  175. nI = IMGSRC.length;

  176. var k = 0;

  177. for(var i=0;i<NY;i++){

  178.   for(var j=0;j<NX;j++){

  179.    object[k] = new CObj(k,i,j);

  180.    object[k++].DOOT();

  181.   }

  182. }

  183. IMGBOX.style.width  = iW;

  184. IMGBOX.style.height = iH;

  185. TXTBOX.style.width  = iW;

  186. TXTBOX.style.height = iH;

  187. TXTBOX.style.left   = iW;

  188. TXTBOX.style.visibility="visible";

  189. CENTER.style.left   = -iW;

  190. CENTER.style.top    = -iH/2;

  191. }

  192. //-->

  193. </script>

  194. </head>



  195. <body>

  196. <div style="position:absolute;left:50%;top:50%;"><div id="center" style="position:absolute;">



  197. <div id="imgbox" style="position:absolute;left:0;top:0;overflow:hidden;"></div>

  198. <div id="txtbox" style="position:absolute;visibility:hidden;overflow:hidden;background:#333;color:#FFF;font-family:verdana;font-size:0.8em;">

  199.   <div style="margin:2%">

  200.   <h2>IMGBOX</h2>Click the thumbnails on the left for a larger image. The description connected to the clicked image is displayed here.<br>

  201.   <br>Note: for performance reasons, images are not resized and must be all of the same size.

  202.   </div>

  203. </div>





  204. </div></div>



  205. <div id="imgsrc" style="visibility:hidden">

  206. <img src="/jscode/images/20065115756894.jpg">

  207. <img src="/jscode/images/20065115757878.jpg">

  208. <img src="/jscode/images/2006511581166.jpg">

  209. <img src="/jscode/images/2006511581185.jpg">

  210. <img src="/jscode/images/2006511581187.jpg">

  211. <img src="/jscode/images/2006511581588.jpg">

  212. <img src="/jscode/images/2006511581828.jpg">

  213. <img src="/jscode/images/2006511581951.jpg">

  214. <img src="/jscode/images/2006511581821.jpg">

  215. </div>



  216. <div id="txtsrc" style="visibility:hidden">

  217. <div>

  218.   <h2>the river</h2><br>Awaken from my nap by the river

  219. </div>

  220. <div>

  221.   <h2>transparency</h2><br>Its transparency was hypnotizing.

  222. </div>

  223. <div>

  224.   <h2>cold</h2><br>Currents of cold water played with light.

  225. </div>

  226. <div>

  227.   <h2>sank in</h2><br>I threw a few nuts into the river. They floated for a while, then sank in.

  228. </div>

  229. <div>

  230.   <h2>masked</h2><br>A wide stepping stone masked the water's depth.

  231. </div>

  232. <div>

  233.   <h2>a glimpse</h2><br>Later on, I had a glimpse of the river's bed.

  234. </div>

  235. <div>

  236.   <h2>forgotten</h2><br>The wheelchair made a noise. Again, I had forgotten about my legs.

  237. </div>

  238. <div>

  239.   <h2>floated</h2><br>Still, I floated in oblivion of things too real.

  240. </div>

  241. <div>

  242.   <h2>for me</h2><br>I stared fixedly at the water's open arms. The stream was singing for me.

  243. </div>

  244. </div>



  245. <!-- crossbrowser images_loading_bar - Gerard Ferrandez - [url]www.dhteumeuleu.com[/url] - Feb 2005 -->

  246. <span id=LB0 style="position:absolute;left:50%;top:50%;"><span style="position:absolute;font-family:arial;font-size:10px;color:#FFFFFF;left:-50;top:-18">Loading...</span>

  247. <span style="position:absolute;left:-50;top:-5;font-size:1px;width:100;height:10px;background:#333"><span id=LB1 style="position:absolute;left:0;top:0;font-size:1px;width:0;height:10px;background:#FFFFFF"></span></span></span>

  248. <script>m00=document.getElementById("imgsrc").getElementsByTagName("img");m01=m00.length;function images_loading_bar(){m02=0;for(i=0;i<m01;i++)m02+=(m00[i].complete)?1:0;document.getElementById("LB1").style.width=Math.round(m02/m01*100);if(m02==m01)setTimeout("document.getElementById('LB0').style.display='none'",128); else setTimeout("images_loading_bar()", 64);};images_loading_bar();</script>

  249. <!-- end of images_loading_bar code -->



  250. </body>

  251. </html>
复制代码
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

 楼主| 发表于 2007 年 7 月 11 日 15:07:44 | 显示全部楼层
  1. [code]<html>
  2. <head>
  3. <title>随日期变换的文本</title>
  4. <style type="text/css">
  5. <!--
  6. body {  font-family: "宋体"; font-size: 9pt; margin-top: 0px; margin-left: 4px; margin-right: 0px}
  7. A { FONT-SIZE: 9pt; FONT-WEIGHT: 400; TEXT-DECORATION: none }
  8. --></style>
  9. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">

  10. </head>
  11. <body>
  12. <br>
  13. <br>
  14. <center><font color=red face="隶书" size=6>随日期变换文本</font></center>
  15. <br>
  16. <center>
  17. <table border=1 bordercolor=#000000 borderlight=green style="border-collapse: collapse" cellpadding="0" cellspacing="0">
  18. <tr><td align=center><font size=5 color=red face="Arial, Helvetica, sans-serif"><strong>下面为脚本显示区</strong></font></td></tr><tr><td align=center><script language="JavaScript">
  19. <!-- Hide
  20.   var now = new Date();
  21.   var month = now.getMonth() + 1;
  22.   var date = now.getDate();
  23.   var year = now.getYear();

  24.         msgs = new Array
  25.         msgs[1] = "每月1号的信息:"
  26.         msgs[2] = "每月2号的信息:"
  27.         msgs[3] = "每月3号的信息:"
  28.         msgs[4] = "每月4号的信息:"
  29.         msgs[5] = "每月5号的信息:"
  30.         msgs[6] = "每月6号的信息:"
  31.         msgs[7] = "每月7号的信息:"
  32.         msgs[8] = "每月8号的信息:"
  33.         msgs[9] = "每月9号的信息:"
  34.         msgs[10] = "每月10号的信息:"
  35.         msgs[11] = "每月11号的信息:"
  36.         msgs[12] = "每月12号的信息:"
  37.         msgs[13] = "每月13号的信息:"
  38.         msgs[14] = "每月14号的信息:"
  39.         msgs[15] = "每月15号的信息:"
  40.         msgs[16] = "每月16号的信息:"
  41.         msgs[17] = "每月17号的信息:"
  42.         msgs[18] = "每月18号的信息:"
  43.         msgs[19] = "每月19号的信息:"
  44.         msgs[20] = "每月20号的信息:"
  45.         msgs[21] = "每月21号的信息:"
  46.         msgs[22] = "每月22号的信息:"
  47.         msgs[23] = "每月23号的信息:"
  48.         msgs[24] = "每月24号的信息:"
  49.         msgs[25] = "每月25号的信息:"
  50.         msgs[26] = "每月26号的信息:"
  51.         msgs[27] = "每月27号的信息:"
  52.         msgs[28] = "每月28号的信息:"
  53.         msgs[29] = "每月29号的信息:"
  54.         msgs[30] = "每月30号的信息:"
  55.         msgs[31] = "每月31号的信息:"
  56.         var msg = msgs[date]

  57. //-->

  58. </script>
  59.                   <script>
  60. <!--
  61. document.write(msg);
  62. //-->
  63. </script>
  64.  </td></tr></table></center>
  65. <br>
  66. <br>
  67. <center>
  68. <SCRIPT LANGUAGE="JavaScript">

  69. <!-- hide

  70. function goHist(a)

  71. {

  72.    history.go(a);

  73. }

  74. //-->

  75. </script></center>

  76. </body>
  77. </html>
复制代码
[/code]
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

发表于 2007 年 7 月 11 日 15:07:50 | 显示全部楼层
是啥代码呀?
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

发表于 2007 年 7 月 11 日 16:59:46 | 显示全部楼层
这些是干什么用的。。
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

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

本版积分规则

Archiver|手机版|小黑屋|金光论坛

GMT+8, 2025 年 2 月 5 日 22:57 , Processed in 0.018890 second(s), 22 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

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