<html>
<head>
<title>网页特效|Linkweb.cn/Js|---飘忽不定的图片链接</title>
</head>
<body>
<p><a href="http://linkweb.cn/js">
<img id="me1" border="0" src="../../images/hudie.gif"
style="position: absolute; top: 49; left: 30; filter: alpha(Opacity=100)" width="100"
height="100"></a></p>
<script language="vbscript">
dim i
dim control
i=80
sub window_onload()
change()
end sub
sub change()
if i=0 then
control=1
move()
end if
if i=80 then
control=0
move()
end if
if control=1 then
me1.filters.alpha.opacity=i
i=i+5
else
me1.filters.alpha.opacity=i
i=i-5
end if
window.settimeout "change()",100
end sub
sub move()
me1.style.left=Rnd*400+10
me1.style.top=Rnd*300+10
end sub
</script>
</body>
</html>
