找回密码
 注册
搜索
免费空间 免费域名 免费AI 老牌主机商首月仅1美分!27美元/年!Spaceship优惠码 Namecheap优惠码阿里云2核2G3M新老续费同享99元/年!
楼主: TMD

[程序代码] 求此站源码

[复制链接]
发表于 2009-10-30 20:11:06 | 显示全部楼层
p52u.cn
找他看看...我看他有装过演示是这个程序..
发表于 2009-10-30 20:26:26 | 显示全部楼层
好看吗?难看
 楼主| 发表于 2009-10-30 20:26:51 | 显示全部楼层
TMD,你看这个行不行,行的话这个我可以帮你找到www.aiduqin.cn
张涛2009 发表于 2009-10-30 20:06

谢谢了
发表于 2009-10-30 20:37:32 | 显示全部楼层
发表于 2009-10-30 20:43:27 | 显示全部楼层
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<!-- saved from url=(0025)http://www.911usa.com.cn/ -->
<HTML><HEAD>
<title>皮皮免费资源网 | 免费资源、建站资源、网络技术 </title>
<meta name="keywords" content="空间资源,站长,网站,网站建设,网络技术,seo,关键词" />
<meta name="description" content="免费空间、免费域名、免费账号,建站技术,网页设计、个人网站发展经验技巧" />

<STYLE type=text/css>HTML {
        OVERFLOW: hidden
}
BODY {
        PADDING-RIGHT: 0px;
        PADDING-LEFT: 0px;
        BACKGROUND: url(images/img03.gif);
        PADDING-BOTTOM: 0px;
        MARGIN: 0px;
        WIDTH: 100%;
        PADDING-TOP: 0px;
        POSITION: absolute;
        HEIGHT: 100%;
        background-image: url(images/img03.gif);
}
#center {
        LEFT: 50%; POSITION: absolute; TOP: 50%
}
#slider {
        BORDER-RIGHT: #000 20px solid; BORDER-TOP: #000 20px solid; BACKGROUND: #000; LEFT: -430px; OVERFLOW: hidden; BORDER-LEFT: #000 20px solid; WIDTH: 820px; BORDER-BOTTOM: #000 20px solid; POSITION: absolute; TOP: -186px; HEIGHT: 333px
}
#slider .slide {
        BACKGROUND: #000; OVERFLOW: hidden; BORDER-LEFT: #000 1px solid; WIDTH: 500px; CURSOR: default; POSITION: absolute; TOP: 0px; HEIGHT: 333px
}
#slider .title {
        FONT-WEIGHT: bold; FONT-SIZE: 1.2em; COLOR: #f80; MARGIN-RIGHT: 1.5em; TEXT-DECORATION: none
}
#slider .backgroundText {
        BACKGROUND: #000; FILTER: alpha(opacity=40); WIDTH: 100%; POSITION: absolute; TOP: 100%; HEIGHT: 100%; opacity: 0.4
}
#slider .text {
        FONT-SIZE: 0.9em; LEFT: 10px; WIDTH: 470px; COLOR: #fff; FONT-FAMILY: verdana, arial, Helvetica, sans-serif; POSITION: absolute; TOP: 100%; TEXT-ALIGN: justify
}
#slider .diapo {
        FILTER: alpha(opacity=100); VISIBILITY: hidden; POSITION: absolute; opacity: 1
}
</STYLE>

<SCRIPT type=text/javascript>
/* ==== slider nameSpace ==== */
var slider = function() {
        /* ==== private methods ==== */
        function getElementsByClass(object, tag, className) {
                var o = object.getElementsByTagName(tag);
                for ( var i = 0, n = o.length, ret = []; i < n; i++) {
                        if (o.className == className) ret.push(o);
                }
                if (ret.length == 1) ret = ret[0];
                return ret;
        }
        function setOpacity (obj,o) {
                if (obj.filters) obj.filters.alpha.opacity = Math.round(o);
                else obj.style.opacity = o / 100;
        }
        /* ==== Slider Constructor ==== */
        function Slider(oCont, speed, iW, iH, oP) {
                this.slides = [];
                this.over   = false;
                this.S      = this.S0 = speed;
                this.iW     = iW;
                this.iH     = iH;
                this.oP     = oP;
                this.oc     = document.getElementById(oCont);
                this.frm    = getElementsByClass(this.oc, 'div', 'slide');
                this.NF     = this.frm.length;
                this.resize();
                for (var i = 0; i < this.NF; i++) {
                        this.slides = new Slide(this, i);
                }
                this.oc.parent = this;
                this.view      = this.slides[0];
                this.Z         = this.mx;
                /* ==== on mouse out event ==== */
                this.oc.onmouseout = function () {
                        this.parent.mouseout();
                        return false;
                }
        }
        Slider.prototype = {
                /* ==== animation loop ==== */
                run : function () {
                        this.Z += this.over ? (this.mn - this.Z) * .5 : (this.mx - this.Z) * .5;
                        this.view.calc();
                        var i = this.NF;
                        while (i--) this.slides.move();
                },
                /* ==== resize  ==== */
                resize : function () {
                        this.wh = this.oc.clientWidth;
                        this.ht = this.oc.clientHeight;
                        this.wr = this.wh * this.iW;
                        this.r  = this.ht / this.wr;
                        this.mx = this.wh / this.NF;
                        this.mn = (this.wh * (1 - this.iW)) / (this.NF - 1);
                },
                /* ==== rest  ==== */
                mouseout : function () {
                        this.over      = false;
                        setOpacity(this.view.img, this.oP);
                }
        }
        /* ==== Slide Constructor ==== */
        Slide = function (parent, N) {
                this.parent = parent;
                this.N      = N;
                this.x0     = this.x1 = N * parent.mx;
                this.v      = 0;
                this.loaded = false;
                this.cpt    = 0;
                this.start  = new Date();
                this.obj    = parent.frm[N];
                this.txt    = getElementsByClass(this.obj, 'div', 'text');
                this.img    = getElementsByClass(this.obj, 'img', 'diapo');
                this.bkg    = document.createElement('div');
                this.bkg.className = 'backgroundText';
                this.obj.insertBefore(this.bkg, this.txt);
                if (N == 0) this.obj.style.borderLeft = 'none';
                this.obj.style.left = Math.floor(this.x0) + 'px';
                setOpacity(this.img, parent.oP);
                /* ==== mouse events ==== */
                this.obj.parent = this;
                this.obj.onmouseover = function() {
                        this.parent.over();
                        return false;
                }
        }
        Slide.prototype = {
                /* ==== target positions ==== */
                calc : function() {
                        var that = this.parent;
                        // left slides
                        for (var i = 0; i <= this.N; i++) {
                                that.slides.x1 = i * that.Z;
                        }
                        // right slides
                        for (var i = this.N + 1; i < that.NF; i++) {
                                that.slides.x1 = that.wh - (that.NF - i) * that.Z;
                        }
                },
                /* ==== HTML animation : move slides ==== */
                move : function() {
                        var that = this.parent;
                        var s = (this.x1 - this.x0) / that.S;
                        /* ==== lateral slide ==== */
                        if (this.N && Math.abs(s) > .5) {
                                this.obj.style.left = Math.floor(this.x0 += s) + 'px';
                        }
                        /* ==== vertical text ==== */
                        var v = (this.N < that.NF - 1) ? that.slides[this.N + 1].x0 - this.x0 : that.wh - this.x0;
                        if (Math.abs(v - this.v) > .5) {
                                this.bkg.style.top = this.txt.style.top = Math.floor(2 + that.ht - (v - that.Z) * that.iH * that.r) + 'px';
                                this.v = v;
                                this.cpt++;
                        } else {
                                if (!this.pro) {
                                        /* ==== adjust speed ==== */
                                        this.pro = true;
                                        var tps = new Date() - this.start;
                                        if(this.cpt > 1) {
                                                that.S = Math.max(2, (28 / (tps / this.cpt)) * that.S0);
                                        }
                                }
                        }
                        if (!this.loaded) {
                                if (this.img.complete) {
                                        this.img.style.visibility = 'visible';
                                        this.loaded = true;
                                }
                        }
                },
                /* ==== light ==== */
                over : function () {
                        this.parent.resize();
                        this.parent.over = true;
                        setOpacity(this.parent.view.img, this.parent.oP);
                        this.parent.view = this;
                        this.start = new Date();
                        this.cpt = 0;
                        this.pro = false;
                        this.calc();
                        setOpacity(this.img, 100);
                }
        }
        /* ==== public method - script initialization ==== */
        return {
                init : function() {
                        // create instances of sliders here
                        // parameters : HTMLcontainer name, speed (2 fast - 20 slow), Horizontal ratio, vertical text ratio, opacity
                        this.s1 = new Slider("slider", 12, 1.84/3, 1/3.2, 70);
                        setInterval("slider.s1.run();", 16);
                }
        }
}();

</SCRIPT>

<STYLE type=text/css>A {
        TEXT-DECORATION: none
}
A:hover {
        TEXT-DECORATION: underline
}
</STYLE>

<META content="MSHTML 6.00.2900.3395" name=GENERATOR></HEAD>
<BODY oncontextmenu="return false" onselectstart="return false"
ondragstart="return false">
<DIV id=center>
<DIV id=slider>
<DIV class=slide><IMG class=diapo alt="" src="images/sf01.jpg">
<DIV class=text><A class=title href="http://www.p52u.cn"
target=_blank>皮皮免费资源网首页</A>
免费空间、免费域名、免费账号,建站技术,网页设计、个人网站发展经验技巧
</DIV></DIV>

<DIV class=slide><IMG class=diapo alt="" src="images/sf02.jpg">
<DIV class=text><A class=title href="http://bbs.p52u.cn"
target=_blank>皮皮免费资源网论坛</A>
net.ru玉米免费申请 站长交流
</DIV></DIV>

<DIV class=slide><IMG class=diapo alt="" src="images/sf03.jpg">
<DIV class=text><A class=title href="http://wp.p52u.cn/"
target=_blank>皮皮免费网盘</A>免费网络硬盘 </DIV></DIV>

<DIV class=slide><IMG class=diapo alt="" src="images/sf04.jpg">
<DIV class=text><A class=title href="#"
target=_blank>感动新视听</A>Music...</DIV></DIV>
<DIV class=slide><IMG class=diapo alt="" src="images/sf05.jpg">
<DIV class=text><A class=title href="#"
target=_blank>Underconstraction</DIV></DIV>


</DIV></DIV></DIV></DIV>
<SCRIPT
type=text/javascript>
/* ==== start script ==== */
slider.init();
</SCRIPT>
</BODY>








<center>
<script type="text/javascript"><!--
google_ad_client = "pub-6404806808877736";
/* 网站468x60, 创建于 09-4-16 */
google_ad_slot = "3547366479";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</center>

</HTML>

<!-- www.000webhost.com Analytics Code -->
<script type="text/javascript" src="http://analytics.hosting24.com/count.php"></script>
<noscript><a href="http://www.hosting24.com/"><img src="http://analytics.hosting24.com/count.php" alt="web hosting" /></a></noscript>
<!-- End Of Analytics Code -->
发表于 2009-10-30 20:43:48 | 显示全部楼层
直接改一下
然后去吧他图片下下来
OK
发表于 2009-10-30 20:44:03 | 显示全部楼层
会用搜索 就是王道
发表于 2009-10-30 20:46:57 | 显示全部楼层
本帖最后由 lyd175 于 2009-10-30 20:49 编辑

TMD看下是不是这个http://yanrong.org.ru
这个是我改的,你可以查看源码直接修改成你要的就可以了。也没时间测试,不知道有没有错误。页面去GOOGLE广告了!

评分

参与人数 1银币 +8 收起 理由
TMD + 8 感谢分享

查看全部评分

发表于 2009-10-30 20:49:36 | 显示全部楼层
没看出哪里好……
发表于 2009-10-30 20:51:06 | 显示全部楼层
很土的照片。。很土的JS图片展示
您需要登录后才可以回帖 登录 | 注册

本版积分规则

手机版|小黑屋|免费吧论坛

GMT+8, 2024-5-13 00:16 , Processed in 0.034605 second(s), 9 queries , Redis On.

Powered by Discuz! X3.5

© 2001-2023 Discuz! Team.

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