可爱老人网

 找回密码
 注册会员
搜索
查看: 3475|回复: 33

代码特效相册习作

[复制链接]
发表于 2013-4-1 09:54 | 显示全部楼层 |阅读模式
本帖最后由 周春祥 于 2013-4-1 09:59 编辑

素材/网络 周春祥编辑











刘树义 该用户已被删除
发表于 2013-4-1 13:13 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
发表于 2013-4-1 15:51 | 显示全部楼层
本帖最后由 慧儿 于 2013-4-1 15:52 编辑

周哥制作的真好,图美,音美,好迷人的风景!
您辛苦了!慧儿欣赏学习了!


发表于 2013-4-1 17:16 | 显示全部楼层
学习欣赏,恃效音画。
 楼主| 发表于 2013-4-1 18:44 | 显示全部楼层
刘树义 发表于 2013-4-1 13:13
非常欣赏老同学的精美佳作!

谢谢老同学的鼓励和赏评!
 楼主| 发表于 2013-4-1 18:46 | 显示全部楼层
木叔里 发表于 2013-4-1 10:20
赞赏、学习周版主的特效翻页相册,很精美!

谢谢你的鼓励和赏评!
 楼主| 发表于 2013-4-1 18:48 | 显示全部楼层
慧儿 发表于 2013-4-1 15:51
周哥制作的真好,图美,音美,好迷人的风景!
您辛苦了!慧儿欣赏学习了!{::niqiang: ...

谢谢你的鼓励和赏评!
 楼主| 发表于 2013-4-1 18:48 | 显示全部楼层
维子 发表于 2013-4-1 17:16
学习欣赏,恃效音画。

谢谢你的鼓励和赏评!
发表于 2013-4-1 19:20 | 显示全部楼层
周春祥 发表于 2013-4-1 18:48
谢谢你的鼓励和赏评!

周老好。恃效很不一般,可以提代图片的代码吗?
 楼主| 发表于 2013-4-1 20:59 | 显示全部楼层
维子 发表于 2013-4-1 19:20
周老好。恃效很不一般,可以提代图片的代码吗?

这是编辑图片代码:
<BODY
background=http://www.laitu.net/di-YTU6.jpg onload=changeimage()>

<div style="position: absolute; width:950px; height: 600px; z-index: 1; left: 65px; top: 130px" id="layer1">

<STYLE>
.spanstyle {
        LEFT: -5000px; POSITION: absolute
}
</STYLE>
<SCRIPT>
<!-- Beginning of JavaScript -
       
// The width of your images (pixels). All pictures should have the same width.
var imgwidth=900
// The height of your images (pixels). All pictures should have the same height.
var imgheight=580
// The URL of your images. You may add as many images as you like.
var imgurl=new Array()
imgurl[0]="http://www.laitu.net/di-KBP2.jpg"
imgurl[1]="http://www.laitu.net/di-ARGF.jpg"
imgurl[2]="http://www.laitu.net/di-Y1V4.jpg"
imgurl[3]="http://www.laitu.net/di-ABR6.jpg"
imgurl[4]="http://www.laitu.net/di-GGUJ.jpg"
imgurl[5]="http://www.laitu.net/di-ARUN.jpg"
imgurl[6]="http://www.laitu.net/di-X71Z.jpg"
imgurl[7]="http://www.laitu.net/di-VYHV.jpg"


// Do not edit this block.
var imgpreload=new Array()
for (i=0;i<=imgurl.length-1;i++) {
        imgpreload=new Image()
        imgpreload.src=imgurl
}

// Final horizontal position of the image: distance to the left margin of the window
var x_finalpos=0
// Final vertical position of the image: distance to the top margin of the window
var y_finalpos=0

// Number of sliced cells (the higher this value the slower the script)
var x_slices=10

// Number of sliced rows (the higher this value the slower the script)
var y_slices=10

// Speed of the reassembling effect. More means slower.
var pause=10

// The width and heigth of the zone where the debris of the images are spread (pixels)
var screenwidth=1000
var screenheight=580

// Do not change the variables below
var x_step=new Array()
var y_step=new Array()
var x_randompos=0
var y_randompos=0
var i_loop=0
var max_loop=20
var i_image=0
var width_slice=Math.floor(imgwidth/x_slices)
var height_slice=Math.floor(imgheight/y_slices)
var cliptop=0
var clipbottom=height_slice
var clipleft=0
var clipright=width_slice
var spancounter=0

function initiate() {
        cliptop=0
        clipbottom=height_slice
        clipleft=0
        clipright=width_slice
        i_loop=0
        spancounter=0
    if (document.all) {
            for (i=0;i<=y_slices-1;i++) {
                        for (ii=0;ii<=x_slices-1;ii++) {
                                var thisspan=eval("document.all.span"+spancounter+".style")
                                x_randompos=Math.ceil(screenwidth*Math.random())
                                y_randompos=Math.ceil(screenheight*Math.random())
                                thisspan.posLeft=x_randompos
                                thisspan.posTop=y_randompos
                thisspan.clip ="rect("+cliptop+" "+clipright+" "+clipbottom+" "+clipleft+")"
                                clipleft+=width_slice
                        clipright+=width_slice
                        spancounter++
                        }
                clipleft=0
                clipright=width_slice
                cliptop+=height_slice
                clipbottom+=height_slice
                }
   }
   explode_IE()
}

function changeimage() {
        spancounter=0
        for (i=0;i<=y_slices-1;i++) {
                for (ii=0;ii<=x_slices-1;ii++) {
                        var thisspan=eval("document.all.span"+spancounter+".style")               
                        thisspan.posLeft=-5000
                        thisspan.posTop=-5000
                        spancounter++
                }
        }
        spancounter=0
        if (i_image>imgurl.length-1) {i_image=0}
        for (i=0;i<=y_slices-1;i++) {
                for (ii=0;ii<=x_slices-1;ii++) {
                        var thisinnerspan=eval("span"+spancounter)
                    thisinnerspan.innerHTML="<img src='"+imgurl[i_image]+"'>"
                        spancounter++
                }
        }
        i_image++
        initiate()
}


function explode_IE() {
        spancounter=0
        if (i_loop<=max_loop-1) {
                for (i=0;i<=y_slices-1;i++) {
                        for (ii=0;ii<=x_slices-1;ii++) {
                                var thisspan=eval("document.all.span"+spancounter+".style")
                                x_step[spancounter]=(x_finalpos-thisspan.posLeft)/(max_loop-i_loop)
                                y_step[spancounter]=(y_finalpos-thisspan.posTop)/(max_loop-i_loop)               
                                thisspan.posLeft+=x_step[spancounter]
                                thisspan.posTop+=y_step[spancounter]
                                spancounter++
                        }
                }
                i_loop++
                var timer=setTimeout("explode_IE()",pause)
        }
        else {
                spancounter=0
                clearTimeout(timer)
                var timer=setTimeout("changeimage()",2500)
        }
}


// - End of JavaScript - -->
</SCRIPT>
<SCRIPT>
<!-- Beginning of JavaScript -
if (document.all) {
        for (i=0;i<=y_slices-1;i++) {
                for (ii=0;ii<=x_slices-1;ii++) {
                    document.write("<span id='span"+spancounter+"' class='spanstyle'></span>")
                        spancounter++
                }
        }
        spancounter=0
}
// - End of JavaScript - -->
</SCRIPT>
  <EMBED style="LEFT: 0px; WIDTH: 0px; POSITION: absolute; TOP: 0px; HEIGHT: 0px" align=right src=http://sc.yhy8.com/UploadFile/731773200/201110516915797.swf width=0 height=0 type=application/octet-stream wmode="transparent" quality="high" >

图片更换、歌曲mp3更换,这二项做好后把编辑好的代码上传空间得TXT文件。

<DIV style="POSITION: relative; WIDTH:950px; TOP: 100px; LEFT: -1px" twffan="done"><IFRAME height=650 marginHeight=0 src="http://upload.ouliu.net/i/20130401092122iajpy.txt" frameBorder=0 width=950 marginWidth=0 scrolling=no></IFRAME></DIV><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR>

再最后加边框。
        
下一页 发布主题 快速回复

手机版|公众号|小黑屋|可爱老人网

GMT+8, 2024-11-18 02:40

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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