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

这个HTML代码怎么样?

[复制链接]
发表于 2008 年 11 月 19 日 09:21:37 | 显示全部楼层 |阅读模式

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

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

×
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
  2. <html>
  3. <head>
  4. <title>你们MJJ</title>
  5. <meta http-equiv="imagetoolbar" content="no">
  6. <style type="text/css">
  7.         html {
  8.                 overflow: hidden;
  9.         }
  10.         body {
  11.                 margin: 0px;
  12.                 padding: 0px;
  13.                 background: #000;
  14.                 width: 100%;
  15.                 height: 100%;
  16.         }
  17.         #imageFlow {
  18.                 position: absolute;
  19.                 width: 100%;
  20.                 height: 80%;
  21.                 left: 0%;
  22.                 top: 10%;
  23.                 background: #000;
  24.         }
  25.         #imageFlow .diapo {
  26.                 position: absolute;
  27.                 left: -1000px;
  28.                 cursor: pointer;
  29.                 -ms-interpolation-mode: nearest-neighbor;
  30.         }
  31.         #imageFlow .link {
  32.                 border: dotted #fff 1px;
  33.                 margin-left: -1px;
  34.                 margin-bottom: -1px;
  35.         }
  36.         #imageFlow .bank {
  37.                 visibility: hidden;
  38.         }
  39.         #imageFlow .top {
  40.                 position: absolute;
  41.                 width: 100%;
  42.                 height: 40%;
  43.                 background: #181818;
  44.         }
  45.         #imageFlow .text {
  46.                 position: absolute;
  47.                 left: 0px;
  48.                 width: 100%;
  49.                 bottom: 16%;
  50.                 text-align: center;
  51.                 color: #FFF;
  52.                 font-family: verdana, arial, Helvetica, sans-serif;
  53.                 z-index: 1000;
  54.         }
  55.         #imageFlow .title {
  56.                 font-size: 0.9em;
  57.                 font-weight: bold;
  58.         }
  59.         #imageFlow .legend {
  60.                 font-size: 0.8em;
  61.         }
  62.         #imageFlow .scrollbar {
  63.                 position: absolute;
  64.                 left: 10%;
  65.                 bottom: 10%;
  66.                 width: 80%;
  67.                 height: 16px;
  68.                 z-index: 1000;
  69.         }
  70.         #imageFlow .track {
  71.                 position: absolute;
  72.                 left: 1%;
  73.                 width: 98%;
  74.                 height: 16px;
  75.                 filter: alpha(opacity=30);
  76.                 opacity: 0.3;
  77.         }
  78.         #imageFlow .arrow-left {
  79.                 position: absolute;
  80.         }
  81.         #imageFlow .arrow-right {
  82.                 position: absolute;
  83.                 right: 0px;
  84.         }
  85.         #imageFlow .bar {
  86.                 position: absolute;
  87.                 height: 16px;
  88.                 left: 25px;
  89.         }
  90. </style>
  91. <script type="text/javascript">
  92. var imf = function () {
  93.         var lf = 0;
  94.         var instances = [];
  95.         function getElementsByClass (object, tag, className) {
  96.                 var o = object.getElementsByTagName(tag);
  97.                 for ( var i = 0, n = o.length, ret = []; i < n; i++)
  98.                         if (o[i].className == className) ret.push(o[i]);
  99.                 if (ret.length == 1) ret = ret[0];
  100.                 return ret;
  101.         }
  102.         function addEvent (o, e, f) {
  103.                 if (window.addEventListener) o.addEventListener(e, f, false);
  104.                 else if (window.attachEvent) r = o.attachEvent('on' + e, f);
  105.         }
  106.         function createReflexion (cont, img) {
  107.                 var flx = false;
  108.                 if (document.createElement("canvas").getContext) {
  109.                         flx = document.createElement("canvas");
  110.                         flx.width = img.width;
  111.                         flx.height = img.height;
  112.                         var context = flx.getContext("2d");
  113.                         context.translate(0, img.height);
  114.                         context.scale(1, -1);
  115.                         context.drawImage(img, 0, 0, img.width, img.height);
  116.                         context.globalCompositeOperation = "destination-out";
  117.                         var gradient = context.createLinearGradient(0, 0, 0, img.height * 2);
  118.                         gradient.addColorStop(1, "rgba(255, 255, 255, 0)");
  119.                         gradient.addColorStop(0, "rgba(255, 255, 255, 1)");
  120.                         context.fillStyle = gradient;
  121.                         context.fillRect(0, 0, img.width, img.height * 2);
  122.                 } else {
  123.                         /* ---- DXImageTransform ---- */
  124.                         flx     = document.createElement('img');
  125.                         flx.src = img.src;
  126.                         flx.style.filter = 'flipv progid:DXImageTransform.Microsoft.Alpha(' +
  127.                                            'opacity=50, style=1, finishOpacity=0, startx=0, starty=0, finishx=0, finishy=' +
  128.                                                            (img.height * .25) + ')';
  129.                 }
  130.                 /* ---- insert Reflexion ---- */
  131.                 flx.style.position = 'absolute';
  132.                 flx.style.left     = '-1000px';
  133.                 cont.appendChild(flx);
  134.                 return flx;
  135.         }
  136.         /* //////////// ==== ImageFlow Constructor ==== //////////// */
  137.         function ImageFlow(oCont, size, zoom, border) {
  138.                 this.diapos     = [];
  139.                 this.scr        = false;
  140.                 this.size       = size;
  141.                 this.zoom       = zoom;
  142.                 this.bdw        = border;
  143.                 this.oCont      = oCont;
  144.                 this.oc         = document.getElementById(oCont);
  145.                 this.scrollbar  = getElementsByClass(this.oc,   'div', 'scrollbar');
  146.                 this.text       = getElementsByClass(this.oc,   'div', 'text');
  147.                 this.title      = getElementsByClass(this.text, 'div', 'title');
  148.                 this.legend     = getElementsByClass(this.text, 'div', 'legend');
  149.                 this.bar        = getElementsByClass(this.oc,   'img', 'bar');
  150.                 this.arL        = getElementsByClass(this.oc,   'img', 'arrow-left');
  151.                 this.arR        = getElementsByClass(this.oc,   'img', 'arrow-right');
  152.                 this.bw         = this.bar.width;
  153.                 this.alw        = this.arL.width - 5;
  154.                 this.arw        = this.arR.width - 5;
  155.                 this.bar.parent = this.oc.parent  = this;
  156.                 this.arL.parent = this.arR.parent = this;
  157.                 this.view       = this.back       = -1;
  158.                 this.resize();
  159.                 this.oc.onselectstart = function () { return false; }
  160.                 /* ---- create images ---- */
  161.                 var img   = getElementsByClass(this.oc, 'div', 'bank').getElementsByTagName('a');
  162.                 this.NF = img.length;
  163.                 for (var i = 0, o; o = img[i]; i++) {
  164.                         this.diapos[i] = new Diapo(this, i,
  165.                                                                                 o.rel,
  166.                                                                                 o.title || '- ' + i + ' -',
  167.                                                                                 o.innerHTML || o.rel,
  168.                                                                                 o.href || '',
  169.                                                                                 o.target || '_self'
  170.                         );
  171.                 }
  172.                 /* ==== add mouse wheel events ==== */
  173.                 if (window.addEventListener)
  174.                         this.oc.addEventListener('DOMMouseScroll', function(e) {
  175.                                 this.parent.scroll(-e.detail);
  176.                         }, false);
  177.                 else this.oc.onmousewheel = function () {
  178.                         this.parent.scroll(event.wheelDelta);
  179.                 }
  180.                 /* ==== scrollbar drag N drop ==== */
  181.                 this.bar.onmousedown = function (e) {
  182.                         if (!e) e = window.event;
  183.                         var scl = e.screenX - this.offsetLeft;
  184.                         var self = this.parent;
  185.                         /* ---- move bar ---- */
  186.                         this.parent.oc.onmousemove = function (e) {
  187.                                 if (!e) e = window.event;
  188.                                 self.bar.style.left = Math.round(Math.min((self.ws - self.arw - self.bw), Math.max(self.alw, e.screenX - scl))) + 'px';
  189.                                 self.view = Math.round(((e.screenX - scl) ) / (self.ws - self.alw - self.arw - self.bw) * self.NF);
  190.                                 if (self.view != self.back) self.calc();
  191.                                 return false;
  192.                         }
  193.                         /* ---- release scrollbar ---- */
  194.                         this.parent.oc.onmouseup = function (e) {
  195.                                 self.oc.onmousemove = null;
  196.                                 return false;
  197.                         }
  198.                         return false;
  199.                 }
  200.                 /* ==== right arrow ==== */
  201.                 this.arR.onclick = this.arR.ondblclick = function () {
  202.                         if (this.parent.view < this.parent.NF - 1)
  203.                                 this.parent.calc(1);
  204.                 }
  205.                 /* ==== Left arrow ==== */
  206.                 this.arL.onclick = this.arL.ondblclick = function () {
  207.                         if (this.parent.view > 0)
  208.                                 this.parent.calc(-1);
  209.                 }
  210.         }
  211.         /* //////////// ==== ImageFlow prototype ==== //////////// */
  212.         ImageFlow.prototype = {
  213.                 /* ==== targets ==== */
  214.                 calc : function (inc) {
  215.                         if (inc) this.view += inc;
  216.                         var tw = 0;
  217.                         var lw = 0;
  218.                         var o = this.diapos[this.view];
  219.                         if (o && o.loaded) {
  220.                                 /* ---- reset ---- */
  221.                                 var ob = this.diapos[this.back];
  222.                                 if (ob && ob != o) {
  223.                                         ob.img.className = 'diapo';
  224.                                         ob.z1 = 1;
  225.                                 }
  226.                                 /* ---- update legend ---- */
  227.                                 this.title.replaceChild(document.createTextNode(o.title), this.title.firstChild);
  228.                                 this.legend.replaceChild(document.createTextNode(o.text), this.legend.firstChild);
  229.                                 /* ---- update hyperlink ---- */
  230.                                 if (o.url) {
  231.                                         o.img.className = 'diapo link';
  232.                                         window.status = 'hyperlink: ' + o.url;
  233.                                 } else {
  234.                                         o.img.className = 'diapo';
  235.                                         window.status = '';
  236.                                 }
  237.                                 /* ---- calculate target sizes & positions ---- */
  238.                                 o.w1 = Math.min(o.iw, this.wh * .5) * o.z1;
  239.                                 var x0 = o.x1 = (this.wh * .5) - (o.w1 * .5);
  240.                                 var x = x0 + o.w1 + this.bdw;
  241.                                 for (var i = this.view + 1, o; o = this.diapos[i]; i++) {
  242.                                         if (o.loaded) {
  243.                                                 o.x1 = x;
  244.                                                 o.w1 = (this.ht / o.r) * this.size;
  245.                                                 x   += o.w1 + this.bdw;
  246.                                                 tw  += o.w1 + this.bdw;
  247.                                         }
  248.                                 }
  249.                                 x = x0 - this.bdw;
  250.                                 for (var i = this.view - 1, o; o = this.diapos[i]; i--) {
  251.                                         if (o.loaded) {
  252.                                                 o.w1 = (this.ht / o.r) * this.size;
  253.                                                 o.x1 = x - o.w1;
  254.                                                 x   -= o.w1 + this.bdw;
  255.                                                 tw  += o.w1 + this.bdw;
  256.                                                 lw  += o.w1 + this.bdw;
  257.                                         }
  258.                                 }
  259.                                 /* ---- move scrollbar ---- */
  260.                                 if (!this.scr && tw) {
  261.                                         var r = (this.ws - this.alw - this.arw - this.bw) / tw;
  262.                                         this.bar.style.left = Math.round(this.alw + lw * r) + 'px';
  263.                                 }
  264.                                 /* ---- save preview view ---- */
  265.                                 this.back = this.view;
  266.                         }
  267.                 },
  268.                 /* ==== mousewheel scrolling ==== */
  269.                 scroll : function (sc) {
  270.                         if (sc < 0) {
  271.                                 if (this.view < this.NF - 1) this.calc(1);
  272.                         } else {
  273.                                 if (this.view > 0) this.calc(-1);
  274.                         }
  275.                 },
  276.                 /* ==== resize  ==== */
  277.                 resize : function () {
  278.                         this.wh = this.oc.clientWidth;
  279.                         this.ht = this.oc.clientHeight;
  280.                         this.ws = this.scrollbar.offsetWidth;
  281.                         this.calc();
  282.                         this.run(true);
  283.                 },
  284.                 /* ==== move all images  ==== */
  285.                 run : function (res) {
  286.                         var i = this.NF;
  287.                         while (i--) this.diapos[i].move(res);
  288.                 }
  289.         }
  290.         /* //////////// ==== Diapo Constructor ==== //////////// */
  291.         Diapo = function (parent, N, src, title, text, url, target) {
  292.                 this.parent        = parent;
  293.                 this.loaded        = false;
  294.                 this.title         = title;
  295.                 this.text          = text;
  296.                 this.url           = url;
  297.                 this.target        = target;
  298.                 this.N             = N;
  299.                 this.img           = document.createElement('img');
  300.                 this.img.src       = src;
  301.                 this.img.parent    = this;
  302.                 this.img.className = 'diapo';
  303.                 this.x0            = this.parent.oc.clientWidth;
  304.                 this.x1            = this.x0;
  305.                 this.w0            = 0;
  306.                 this.w1            = 0;
  307.                 this.z1            = 1;
  308.                 this.img.parent    = this;
  309.                 this.img.onclick   = function() { this.parent.click(); }
  310.                 this.parent.oc.appendChild(this.img);
  311.                 /* ---- display external link ---- */
  312.                 if (url) {
  313.                         this.img.onmouseover = function () { this.className = 'diapo link';        }
  314.                         this.img.onmouseout  = function () { this.className = 'diapo'; }
  315.                 }
  316.         }
  317.         /* //////////// ==== Diapo prototype ==== //////////// */
  318.         Diapo.prototype = {
  319.                 /* ==== HTML rendering ==== */
  320.                 move : function (res) {
  321.                         if (this.loaded) {
  322.                                 var sx = this.x1 - this.x0;
  323.                                 var sw = this.w1 - this.w0;
  324.                                 if (Math.abs(sx) > 2 || Math.abs(sw) > 2 || res) {
  325.                                         /* ---- paint only when moving ---- */
  326.                                         this.x0 += sx * .1;
  327.                                         this.w0 += sw * .1;
  328.                                         if (this.x0 < this.parent.wh && this.x0 + this.w0 > 0) {
  329.                                                 /* ---- paint only visible images ---- */
  330.                                                 this.visible = true;
  331.                                                 var o = this.img.style;
  332.                                                 var h = this.w0 * this.r;
  333.                                                 /* ---- diapo ---- */
  334.                                                 o.left   = Math.round(this.x0) + 'px';
  335.                                                 o.bottom = Math.floor(this.parent.ht * .25) + 'px';
  336.                                                 o.width  = Math.round(this.w0) + 'px';
  337.                                                 o.height = Math.round(h) + 'px';
  338.                                                 /* ---- reflexion ---- */
  339.                                                 if (this.flx) {
  340.                                                         var o = this.flx.style;
  341.                                                         o.left   = Math.round(this.x0) + 'px';
  342.                                                         o.top    = Math.ceil(this.parent.ht * .75 + 1) + 'px';
  343.                                                         o.width  = Math.round(this.w0) + 'px';
  344.                                                         o.height = Math.round(h) + 'px';
  345.                                                 }
  346.                                         } else {
  347.                                                 /* ---- disable invisible images ---- */
  348.                                                 if (this.visible) {
  349.                                                         this.visible = false;
  350.                                                         this.img.style.width = '0px';
  351.                                                         if (this.flx) this.flx.style.width = '0px';
  352.                                                 }
  353.                                         }
  354.                                 }
  355.                         } else {
  356.                                 /* ==== image onload ==== */
  357.                                 if (this.img.complete && this.img.width) {
  358.                                         /* ---- get size image ---- */
  359.                                         this.iw     = this.img.width;
  360.                                         this.ih     = this.img.height;
  361.                                         this.r      = this.ih / this.iw;
  362.                                         this.loaded = true;
  363.                                         /* ---- create reflexion ---- */
  364.                                         this.flx    = createReflexion(this.parent.oc, this.img);
  365.                                         if (this.parent.view < 0) this.parent.view = this.N;
  366.                                         this.parent.calc();
  367.                                 }
  368.                         }
  369.                 },
  370.                 /* ==== diapo onclick ==== */
  371.                 click : function () {
  372.                         if (this.parent.view == this.N) {
  373.                                 /* ---- click on zoomed diapo ---- */
  374.                                 if (this.url) {
  375.                                         /* ---- open hyperlink ---- */
  376.                                         window.open(this.url, this.target);
  377.                                 } else {
  378.                                         /* ---- zoom in/out ---- */
  379.                                         this.z1 = this.z1 == 1 ? this.parent.zoom : 1;
  380.                                         this.parent.calc();
  381.                                 }
  382.                         } else {
  383.                                 /* ---- select diapo ---- */
  384.                                 this.parent.view = this.N;
  385.                                 this.parent.calc();
  386.                         }
  387.                         return false;
  388.                 }
  389.         }
  390.         /* //////////// ==== public methods ==== //////////// */
  391.         return {
  392.                 /* ==== initialize script ==== */
  393.                 create : function (div, size, zoom, border) {
  394.                         /* ---- instanciate imageFlow ---- */
  395.                         var load = function () {
  396.                                 var loaded = false;
  397.                                 var i = instances.length;
  398.                                 while (i--) if (instances[i].oCont == div) loaded = true;
  399.                                 if (!loaded) {
  400.                                         /* ---- push new imageFlow instance ---- */
  401.                                         instances.push(
  402.                                                 new ImageFlow(div, size, zoom, border)
  403.                                         );
  404.                                         /* ---- init script (once) ---- */
  405.                                         if (!imf.initialized) {
  406.                                                 imf.initialized = true;
  407.                                                 /* ---- window resize event ---- */
  408.                                                 addEvent(window, 'resize', function () {
  409.                                                         var i = instances.length;
  410.                                                         while (i--) instances[i].resize();
  411.                                                 });
  412.                                                 /* ---- stop drag N drop ---- */
  413.                                                 addEvent(document.getElementById(div), 'mouseout', function (e) {
  414.                                                         if (!e) e = window.event;
  415.                                                         var tg = e.relatedTarget || e.toElement;
  416.                                                         if (tg && tg.tagName == 'HTML') {
  417.                                                                 var i = instances.length;
  418.                                                                 while (i--) instances[i].oc.onmousemove = null;
  419.                                                         }
  420.                                                         return false;
  421.                                                 });
  422.                                                 /* ---- set interval loop ---- */
  423.                                                 setInterval(function () {
  424.                                                         var i = instances.length;
  425.                                                         while (i--) instances[i].run();
  426.                                                 }, 16);
  427.                                         }
  428.                                 }
  429.                         }
  430.                         /* ---- window onload event ---- */
  431.                         addEvent(window, 'load', function () { load(); });
  432.                 }
  433.         }
  434. }();
  435. /* ==== create imageFlow ==== */
  436. //          div ID    , size, zoom, border
  437. imf.create("imageFlow", 0.15, 1.5, 10);
  438. </script>
  439. </head>
  440. <body>
  441.         <div id="imageFlow">
  442.                 <div class="top"></div>
  443.                 <div class="bank">
  444.                         <a rel="http://preview.zcool.com.cn/code/js/04/1/ct37.jpg" title="Myselves" href="http://sm.use2.cn">My identity lies in not knowing who I am</a>
  445.                         <a rel="http://preview.zcool.com.cn/code/js/04/1/ct60.jpg" title="Discoveries" href="http://sm.use2.cn">...are made by not following instructions</a>
  446.                         <a rel="http://preview.zcool.com.cn/code/js/04/1/sf53.jpg" title="Nothing" href="http://sm.use2.cn">...can come between us</a>
  447.                         <a rel="http://preview.zcool.com.cn/code/js/04/1/sf48.jpg" title="New life" href="http://sm.use2.cn">Here you come!</a>
  448.                         <a rel="http://preview.zcool.com.cn/code/js/04/1/ct81.jpg" title="Optimists" href="http://sm.use2.cn">They don't know all the facts yet</a>
  449.                         <a rel="http://preview.zcool.com.cn/code/js/04/1/ct134.jpg" title="Empathy" href="http://sm.use2.cn">Emotional intimacy</a>
  450.                         <a rel="http://preview.zcool.com.cn/code/js/04/1/ct41.jpg" title="Much work" href="http://sm.use2.cn">...remains to be done before we can announce our total failure to make any progress</a>
  451.                         <a rel="http://preview.zcool.com.cn/code/js/04/1/ct75.jpg" title="System error" href="http://sm.use2.cn">Errare Programma Est</a>
  452.                         <a rel="http://preview.zcool.com.cn/code/js/04/1/bl201.jpg" title="Nonexistance" href="http://sm.use2.cn">There's no such thing</a>
  453.                         <a rel="http://preview.zcool.com.cn/code/js/04/1/ct137.jpg" title="Inside" href="http://sm.use2.cn">I抦 now trapped, without hope of escape or rescue</a>
  454.                         <a rel="http://preview.zcool.com.cn/code/js/04/1/ct65.jpg" title="E-Slaves" href="http://sm.use2.cn">The World is flat</a>
  455.                         <a rel="http://preview.zcool.com.cn/code/js/04/1/or105.jpg" title="l0v3" href="http://sm.use2.cn">1 l0v3 j00 - f0r3v3r</a>
  456.                         <a rel="http://preview.zcool.com.cn/code/js/04/1/ct139.jpg" title="T minus zero" href="http://sm.use2.cn">111 111 111 x 111 111 111 = 12345678987654321</a>
  457.                         <a rel="http://preview.zcool.com.cn/code/js/04/1/ct27.jpg" title="The End" href="http://sm.use2.cn">...has not been written yet</a>
  458.                 </div>
  459.                 <div class="text">
  460.                         <div class="title">Loading</div>
  461.                         <div class="legend">Please wait...</div>
  462.                 </div>
  463.                 <div class="scrollbar">
  464.                         <img class="track" src="http://preview.zcool.com.cn/code/js/04/1/sb.gif" alt="">
  465.                         <img class="arrow-left" src="http://preview.zcool.com.cn/code/js/04/1/sl.gif" alt="">
  466.                         <img class="arrow-right" src="http://preview.zcool.com.cn/code/js/04/1/sr.gif" alt="">
  467.                         <img class="bar" src="http://preview.zcool.com.cn/code/js/04/1/sc.gif" alt="">
  468.                 </div>
  469.         </div>
  470. </body>
  471. </html>
复制代码
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
发表于 2008 年 11 月 19 日 09:24:27 | 显示全部楼层
【腾讯云】2核2G云服务器新老同享 99元/年,续费同价
弄个演示啥
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

 楼主| 发表于 2008 年 11 月 19 日 09:24:51 | 显示全部楼层
演示在附件
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

发表于 2008 年 11 月 19 日 09:34:37 | 显示全部楼层
很好很强大!
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

发表于 2008 年 11 月 19 日 09:47:00 | 显示全部楼层
很不错~ 帅
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

发表于 2008 年 11 月 19 日 10:05:41 | 显示全部楼层
JS ?
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

发表于 2008 年 11 月 19 日 12:45:31 | 显示全部楼层
【腾讯云】2核2G云服务器新老同享 99元/年,续费同价
一直都不动?
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

发表于 2008 年 11 月 19 日 12:49:10 | 显示全部楼层
帅气
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

发表于 2008 年 11 月 19 日 13:05:08 | 显示全部楼层
漂亮啊
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

发表于 2008 年 11 月 19 日 13:09:44 | 显示全部楼层
见过的,获奖的js图片浏览
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2025 年 2 月 1 日 13:00 , Processed in 0.037716 second(s), 22 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

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