home *** CD-ROM | disk | FTP | other *** search
- <HTMLtool>Simple scolling banner</HTMLtool>
- <!-- This is a typical scrolling banner -->
- <SCRIPT LANGUAGE="JavaScript">
-
- var id,pause=0,position=0,revol=9;
-
- function banner()
- {
- var i,k;
- var msg=" Your text goes here ";
- var speed=10;
- document.thisform.mybanner.value=msg.substring(position,position+50);
-
- if(position++==msg.length)
- {
- if (revol-- < 2) return;
- position=0;
- }
-
- id=setTimeout("banner()",1000/speed);
- }
-
- </SCRIPT>
-
- </HEAD>
- <BODY BGCOLOR="ffffff" ONLOAD="banner()">
- <CENTER><FORM NAME="thisform">
-
- <INPUT TYPE="text" NAME="mybanner" SIZE="40">
- </FORM>
- </CENTER>
-