在
<head> 与 </head> 之间加入: <SCRIPT LANGUAGE="JavaScript"> function
initArray() { for (var i = 0; i < initArray.arguments.length; i++) { this[i]
= initArray.arguments[i]; } this.length = initArray.arguments.length; } var
colors = new initArray( "red", "blue", "green", "purple", "black", "tan", "yellow", "lime", "coral", "palegreen", "silver", "gold", "red"); delay
= .5; // seconds link = 0; vlink = 0; function linkDance() { link
= (link+1)%colors.length; vlink = (vlink+1)%colors.length; document.linkColor
= colors[link]; document.vlinkColor = colors[vlink]; setTimeout("linkDance()",delay*1000); } linkDance(); </script>
|