实现图片多变化的显像效果代码

来源:互联网 发布:粉笔直播课淘宝 编辑:程序博客网 时间:2024/05/19 06:16
实现图片多变化的显像效果代码
以下是代码片段:
<body>
<script language="javascript">
<!--
if (document.all){
document.write('<img src="图片地址" id="box">');
}
//-->
</script></CENTER>
<script language="javascript">
<!--
if (document.all){

pics=new Array("图片地址1","图片地址2","图片地址3","图片地址4","图片地址5")//后面可任意增加

//Transition speed. 4000 = 4 seconds etc.
delay=4000;

//Nothing needs altering paste here.
l=new Array()
for (i=0; i < pics.length;i++){
l[i]=new Image()
l[i].src=pics[i]
}
n="progid:DXImageTransform.Microsoft.";
f=new Array()
f[0]="Wheel(spokes=4)";
f[1]="Blinds(Bands=10,direction=up)";
f[2]="Stretch(stretchstyle=PUSH)";
f[3]="Stretch(stretchstyle=SPIN)";
f[4]="RadialWipe(wipestyle=RADIAL)";
f[5]="RadialWipe(wipestyle=WEDGE)";
f[6]="Checkerboard(Direction=right,SquaresX=8,SquaresY=8)";
f[7]="Fade(Overlap=1.00)";
f[8]="GradientWipe(GradientSize=0.25,wipestyle=0,motion=forward)";
f[9]="Iris(irisstyle=CIRCLE,motion=out)";
f[10]="Iris(irisstyle=STAR,motion=out)";
f[11]="Barn( motion=out,orientation=vertical)";
f[12]="Barn( motion=in,orientation=vertical)";
f[13]="Strips(motion=leftup)";
f[14]="Slide(slidestyle=HIDE,Bands=1)";
f[15]="Slide(slidestyle=PUSH,Bands=1)";
f[16]="Slide(slidestyle=SWAP,Bands=1)";
f[17]="RandomDissolve(duration=1)";

imgstep=0;

function ani(){
rnd=f[Math.floor(Math.random()*f.length)]
box.style.filter=n+rnd;
box.filters[0].apply();
box.src="/l[imgstep].src";
box.filters[0].play();
imgstep++;
if (imgstep >= l.length) imgstep=0;
setTimeout("ani()",delay);
}
window.onload=new Function("setTimeout('ani()',delay)")
}
//-->
</script>

</body>

说明:
1:以上照片地址修改成自己的.
2:要求片片大小可随意,当然一致会更漂亮些
3:照片可以随意按顺序增加,

以下是代码片段:
1:彩色图片变黑白:


<img src=图片地址 style="filter:gray();" border=0 width=图片宽 height=图片高>

//以上代码加在<body>...</body>之间
2:图片的左右反转:


<img src=图片地址 style="filter:fliph();" border=0 width=图片宽 height=图片高>

//以上代码加在<body>...</body>之间



3:图片的上下反转:


<img src=图片地址 style="filter:flipv();" border=0 width=图片宽 height=图片高>

//以上代码加在<body>...</body>之间



4:图片的透明化:

<img src=图片地址 style="filter: alpha(opacity=45,finishopacity=45);" border=0 width=图片宽 height=图片高>
//修改opacity=45,finishopacity=45处的数字,来决定透明度。
//以上代码加在<body>...</body>之间



5:图片的颜色反转:


拷贝下列代码?

<img src=图片地址 style="filter:invert;" border=0 width=图片宽 height=图片高>

//以上代码加在<body>...</body>之间
 
原创粉丝点击