|
 |
 |
|
 |
| | | | |
 |
 |
Бегущая строка - текст в поле форма |  | ------------------------------------- -------------------------------------------- <html> <head> <title>Текст в поле форма</title> <script language="JavaScript"> var count = -1; var counter; var nchar; var speed = 200; //скорость смены текста var a = new Array(); a[1] = "введите ваш текст здесь"; // символы строки будут заменены a[2] = "ВВЕДИТЕ ВАШ ТЕКСТ ЗДЕСЬ"; // на символы этой len = a[1].length; function animation() { count++ if (count == 0){ document.myform.display.value = a[1]; } if (count == 1){ document.myform.display.value = a[2].substring (0, 1) + a[1].substring(len, 1); } if (count > 1){ a[3] = a[1].substring(0, count - 1) + a[2].substring(count - 1,count) + a[1].substring(len, count); document.myform.display.value = a[3]; } if(count == a[1].length){ count = -1; } counter = setTimeout("animation()",speed); } </script> </head> <body> <form name="myform"> <p><input name="display" SIZE="30" style="font-family: MS Sans Serif; font-size: 1"> </p> </form> <script language="JavaScript"> animation(); </script> </body> </html>

|
 |
|
|