|
<!-- 网页特效代码由[中国WEB开发者网络:http://www.ChinaWebDev.com]提供! --> <!-- 要实现此效果需要 2 个步骤: -->
<!-- 第 1 步: --> <!-- 把下面的代码加到<HEAD></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>
<!-- 第 2 步: --> <!-- 把<BODY>中的属性代码改为: -->
<BODY bgcolor="#fef4d9" onLoad="BgColor()">
|