Русский
<!-- http://www.downcodes.com/js --> <!-- bbs http://www.downcodes.com/bbs--> Для достижения этого эффекта необходимы два шага. Первый шаг. : Добавьте следующий код в область <body> <script Language="JavaScript"> Destination='http://www.downcodes.com/' Messages=new Array() Messages[0]="Добро пожаловать в создание веб-сайта Academy"; Messages[1]="На этом сайте собраны уроки создания веб-страниц, специальные эффекты веб-страниц, создание анимации, руководства по созданию веб-сайтов и сетевое программирование"; Messages[2]="Вы можете добавить несколько специальных эффектов к этим спецэффектам code. Добро пожаловать на сайт http://www.downcodes.com"; FntFace='宋体'; FntColour='66FF33'; FntSize='4'; Speed=2000; count=-1; move=1; if (document. .all){ document.write('< div style="position:absolute;top:0;left:0;width:'+document.body.clientWidth+'">'); document.write('<center>< div id="msg" style="position :relative;top:'+document.body.clientHeight/2+'"></div></center>'); document.write('</div>') ; } if (document.layers) document. write('<layer name=nmsg top='+((window.innerHeight/2)-10)+'></layer>'); function Splash(){ TMR= setTimeout('Splash()',Speed) ; if (count != Messages.length-1) count=count+move; else {window.location.href=Destination;clearTimeout(TMR)} if (document.all) document .all.msg.innerHTML='<font face='+FntFace+' size='+FntSize+' color='+FntColour+'>'+Messages[count]+'</font>'; if (document.layers){ document.layers.nmsg.document.open( ); document.layers.nmsg.document.write('<center><font face='+FntFace+' size='+FntSize+' color='+FntColour+'>'+Messages [count]+'</font>< /center>'); document.layers.nmsg.document.close(); } } </script> Шаг 2. Добавьте «onload="Splash()"» в < body> Например: <body onload ="Splash()">.