- JavaScript to achieve the background of the web automatically color, change their colors, set the time and color values, in your set color value, a certain time automatically switch the background color of the Web page.
<! DOCTYPE HTML PUBLIC "-//w3c//dtd HTML 4.01 transitional//en"
"Http://www.w3.org/TR/html4/loose.dtd" >
<meta http-equiv= "Content-type" content= "text/html; charset=gb2312 ">
<title> Background Automatic discoloration </title>
<body>
Automatic background discoloration
<script language= "JavaScript" >
var arraycolor=new Array ("#00FF66", "#FFFF99", "#99CCFF", "#FFCCFF", "#FFCC99", "#00FFFF", "#FFFF00", "#FFCC00", "# FF00FF ");
var n=0;
function Turncolors () {
n++;
if (n== (arraycolor.length-1)) n=0;
Document.bgcolor = Arraycolor[n];
SetTimeout ("Turncolors ()", 1000);
}
Turncolors ();
</script>
</body>
JavaScript for Web page background automatic color change