|
 |
| | | | |
 |
 |
Строка |  | ------------------------------------ ---------------------------------------- <html> <head> <title>Скрипты бегущей строки</title> <script language="javascript"> <!-- var delay=50; var nextm=0; var msg=new Array ( "Scriptic", "HTML", "Лучшее" ); function start_ticker() { do_ticker(msg[0], 0, 1); } function do_ticker(text, pos, dir) { var out="<font> <font color=blue><font size=10px>"+text.substring(0, pos)+"</font></font> </font>"; if(navigator.appName=="Netscape") with(document.ticker.document) { open(); write(out); close(); } else ticker.innerHTML=out; pos+=dir; if(pos>text.length) setTimeout("do_ticker(""+text+"","+pos+","+(-dir)+")", delay*10); else { if(pos<0) { if(++nextm>=msg.length) nextm=0; text=msg[nextm]; dir=-dir; } setTimeout("do_ticker(""+text+"","+pos+","+dir+")", delay); } } // --> </script> </head> <body onload="start_ticker()"> <div id="ticker"></div> </body> </html>

|
 |
|
|