<body onload="andBoom()"> <script> var speedX = 7; var speedY = 5; url = "http://caige.wy8.net"; var bgColor = "000000"; var txtColor = "FFFFFF"; if (document.all){ var wide = window.screen.availWidth; var high = window.screen.availHeight; } function andBoom(){ if (document.all){ var Boomer = window.open("","BoomWindow","fullscreen"); Boomer.document.write('<HTML><BODY BGCOLOR='+bgColor+' SCROLL=NO><FONT FACE=ARIAL COLOR='+txtColor+'>正在加载全屏窗口</FONT></BODY></HTML>'); Boomer.focus(); for (H=1; H<high; H+= speedY){ Boomer.resizeTo(1,H); } for (W=1; W<wide; W+= speedX){ Boomer.resizeTo(W,H); } Boomer.location = url; } else { window.open(url,"BoomWindow",""); } } </script>

评论