English
<!-- http://www.downcodes.com --> <!-- bbs http://bbs.downcodes.com --> <!--To achieve this effect, two steps are required. The first step is: Add the following code to the <head> area--> <SCRIPT LANGUAGE="JavaScript"> <!-- Begin url = "index1.htm"; var speedX = 7; var speedY = 5; var bgColor = "#000000" ; var txtColor = "#FF80000"; 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+'> Loading...</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",""); } } // End --> </script> <!--Step 2: Add the following code to the <body> area --> <a href="javascript:andBoom()">Click the link to see the effect</a >