中文(繁体)
<!-- http://www.downcodes.com --> <!-- bbs http://bbs.downcodes.com --> <!--要完成此效果需要兩個步驟第一步:把如下程式碼加入<head>區域中--> <SCRIPT Language="JavaScript"> <!-- 螢幕變色程式--> function BgColor() { var x = 0, step = 1 while( x <= 0xffffff) { document.bgColor = x x += step step <<= 8 if( step >= 0x1000000) step = 1 } } BgColor() </Script> <!--第二步:把「onLoad="BgColor()" 」加在<body>標記裡例如:--> <body onLoad="BgColor()">