] 源码如下 ---------------------------------------------------------- <!-- "TextScroller of Color" v1.0 Author: Andrew Gale Date:4/5/01 Email: AGale10495@aol.com -->
<HTML> <HEAD> <Script language="JavaScript">
var someText = "Welcome to my Website!!";// the text var aChar; var aSentence; var i=0;// a counter
var colors = new Array("FF0000","FFFF66","FF3399","00FFFF","FF9900","00FF00"); // the colors var aColor;// the chosen color
function loadText() { // randomly choose color aColor = colors[Math.floor(Math.random()*colors.length)];
aChar = someText.charAt(i); if (i == 0) aSentence = aChar; else aSentence += aChar;
// 50 iterations max. if (i < 50)i++;
// For IE if (document.all) { textDiv.innerHTML= "<font color='#"+aColor+"' face='Tahoma' size='5'><i>"+aSentence+"</i></font>"; setTimeout("loadText()",100); }
// For Netscape Navigator 4 else if (document.layers) { document.textDiv.document.write("<font color='#"+aColor+"' face='Tahoma' size='5'><i>"+aSentence+"</i></font>"); document.textDiv.document.close(); setTimeout("loadText()",100); }
// For other else if (document.getElementById) { document.getElementById("textDiv").innerHTML = "<font color='#"+aColor+"' face='Tahoma'size='5'><i>"+aSentence+"</i></font>"; setTimeout("loadText()",100); } } </SCRIPT> </HEAD> <body bgcolor="#000000" text="#ffffff" onLoad="loadText()">