English
<!-- Add the following code to the <body> area --> <!-- http://www.downcodes.com/js --> <!-- bbs http://www.downcodes.com/bbs --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>Website Building Academy</title> </head> <body bgcolor=" #99CC99"> <h2>Imitate the effect of MSN message prompts</h2> <p>Description: A cool imitation of the effect of MSN message prompts. After opening the page, you will find a message box popping up in the lower right corner, which is very similar to MSN's message box! <br> </p> <p> <SCRIPT> var oPopup = window.createPopup(); var popTop=50; function popmsg(msgstr){ var winstr="<table style="border: 1 solid #FFA6CA " width="241" height="172" border="0" cellpadding="0" cellspacing="0" background="/u/info_img/2009-06/18 /login_bg.gif" >"; winstr+="<tr><td height="30"> </td></tr><tr><td align="center"><table width= "90%" height="110" border="0" cellpadding="0" cellspacing="0">"; winstr+="<tr><td valign="top " style="font-size:12px; color: red; face: Tahoma">"+msgstr+"</td></tr></table></td></tr></table> "; oPopup.document.body.innerHTML = winstr; popshow(); } function popshow(){ window.status=popTop; if(popTop>1720){ clearTimeout(mytime); oPopup.hide(); return; }else if(popTop>1520&&popTop<1720){ oPopup.show(screen.width-250,screen.height,241,1720-popTop); }else if(popTop>1500&&popTop<1520){ oPopup.show(screen.width-250 ,screen.height+(popTop-1720),241,172); }else if(popTop<180){ oPopup.show(screen.width-250,screen.height,241,popTop); }else if(popTop<220){ oPopup.show(screen.width-250,screen.height-popTop,241,172); } popTop+=10; var mytime=setTimeout("popshow();",50); } popmsg("Website Building Academy welcomes you! More web page special effects codes are available at the Website Building Academy! "); </SCRIPT> </p> </body> </html>