English
<!-- http://www.downcodes.com --> <!-- bbs http://www.downcodes.com/bbs--> <!--Script description: Step 1: Add the following code <head>In the 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: Change the content in <body> to: --> <body bgcolor="#fef4d9" onLoad="BgColor()">