|
第一步,将下面的代码加入<head></head>之间
<script language="JavaScript">
function expand() {
if (smallslot.width<=80) {
x=window.setTimeout('expand()', 10)
smallslot.width=smallslot.width + 5
smallslot.height=smallslot.height + 5
}
else {
setTimeout('reduce()', 0)
}
}
function reduce() {
if (smallslot.width>50) {
x=window.setTimeout('reduce()', 10)
smallslot.width=smallslot.width - 5
smallslot.height=smallslot.height - 5
}
}
</script>
|