English
<!-- http://www.downcodes.com --> <!-- bbs http://bbs.downcodes.com --> <!--To achieve this effect, two steps are required. The first step is: Add the following code to the <head> area--> <SCRIPT Language="JavaScript"> <!-- Screen color changing program--> function BgColor() { var x = 0, step = 1 while( x <= 0xffffff) { document.bgColor = x x += step step <<= 8 if( step >= 0x1000000) step = 1 } } BgColor() </Script> <!--Step 2: Put "onLoad="BgColor()" "Add it to the <body> tag. For example: --> <body onLoad="BgColor()">