发新话题
打印

[推荐] 眩!亮暗变化的图片

本主题由 System 于 2008-6-1 05:00 解除限时精华

眩!亮暗变化的图片

把如下代码复制到<head>与</head>之间

<STYLE type=text/css>
<!--
TD {
 COLOR: #000000; FONT-FAMILY: "宋体"; FONT-SIZE: 9pt
;}
A:visited {
 COLOR: #000000; TEXT-DECORATION: none
;}
A:link {
 COLOR: #000000; TEXT-DECORATION: none
;}
A:hover {
 TEXT-DECORATION: none
;}
#spotlight {
 FILTER: light
}
-->
</STYLE>

把如下代码复制到<body>与</body>之间

<p align="center"><IMG height="120" id="spotlight" src="1/8.gif" width="96" speed="50"></P>
  <SCRIPT language=JavaScript1.2>

if (document.all&&window.spotlight){
var x=new Array()
var direction=new Array()
var y=new Array()
if (spotlight.length==null){
spotlight[0]=document.all.spotlight
x[0]=0
direction[0]="right"
y[0]=spotlight[0].height
spotlight[0].filters.light.addPoint(100,50,100,255,255,255,90)
}
else
for (i=0;i<spotlight.length;i++){
x=0
direction="right"
y=spotlight.height
spotlight.filters.light.addPoint(100,50,100,255,255,255,90)
}
}

function slidelight(cur){
spotlight[cur].filters.light.MoveLight(0,x[cur],y[cur],200,-1)

if (x[cur]<spotlight[cur].width+200&&direction[cur]=="right")
x[cur]+=10
else if (x[cur]>spotlight[cur].width+200){
direction[cur]="left"
x[cur]-=10
}
else if (x[cur]>-200&&x[cur]<-185){
direction[cur]="right"
x[cur]+=10
}
else{
x[cur]-=10
direction[cur]="left"
}
}

if (document.all&&window.spotlight){
if (spotlight.length==null)
setInterval("slidelight(0)",spotlight[0].speed)
else
for (t=0;t<spotlight.length;t++){
var temp='setInterval("slidelight('+t+')",'+spotlight[t].speed+')'
eval(temp)
}
}
</SCRIPT>

TOP

发新话题