Ctrl+/
IE11
F11
ESC
PgUp
PgDn
<HTML>
<HEAD>
<TITLE>打开页面颜色渐变</TITLE>
<META http-equiv=Content-Type content="text/html; charset=gb2312">
<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>
</HEAD>
<BODY bgColor=#fef4d9 onload=BgColor()>
<CENTER>打开页面颜色渐变</CENTER>
</BODY>
</HTML>
CSS代码...
JS代码...
xxxxxxxxxx