[CODE]<script language="JavaScript">
function fade(x){
a1.width= 0;
a1.height=0;
a2.width= 0;
a2.height=0;
a3.width= 0;
a3.height=0;
var b = 0;
var c = true;
if(document.all);
if(c == true) {
b+=120;
}
if(b == 200) {
c = false;
}
x.width= 100;
x.height=b; //运行后图片的大小为100*200
}
</script>
<table align="center">
<tr>
<td>
<a href="#" onClick="fade(a1)">1</a>
<a href="#" onClick="fade(a2)">2</a>
<a href="#" onClick="fade(a3)">3</a>
</td>
<td>
<img border=0 src="http://www.bc-cn.net/bbs/Images/userface/image1.jpg" width=0 height=0 name="a1">
<img border=0 src="http://www.bc-cn.net/bbs/Images/userface/image2.gif" width=0 height=0 name="a2">
<img border=0 src="http://www.bc-cn.net/bbs/Images/userface/image3.gif" width=0 height=0 name="a3">
</td>
</tr>
</table>[/CODE]
[此贴子已经被作者于2006-7-14 12:18:52编辑过]