Attention Getting Text
This uses javascript to display text in a really cool and fast loading way. There are many ways to configure the text. If you want more information on using this script please see my "how-to" article in the how-to's area.
By: Chris Straut
Browser Requirements: HTML 2.0 | JS |
Test Script
<!-- Note that though this material may have been in 
a public depository, certain author copyright restrictions may apply. -->

     <SCRIPT LANGUAGE = "JavaScript">

    
     function makeArray() {
     this.length = makeArray.arguments.length;
             for (var i = 0; i < this.length; i++)
             this[i + 1] = makeArray.arguments[i];
     }

     function makeSlideShow (obj, wait, pre, url) {
     this.curText = '';
     this.posit = 1;   
     this.word = obj;  
     this.length = obj.length;
     this.pre = pre;
     this.wait = wait;
     this.url = url;
     this.display = displaySlideShow;
     }

     function displaySlideShow() {
             if (this.posit <= this.length) {
             this.curText = this.word[this.posit]
             outStringWord = blankFrameTop + this.pre + this.curText + blankFrameBottom;
             parent.draw.location = 'javascript:parent.outStringWord';
             this.posit++;
             }
             else {
             doneLoop = true;
             top.location = this.url;
             }
     }

     function displayLoop() {
     if (!doneLoop) reDraw = setTimeout('displayLoop()', wordIntro.wait);
     wordIntro.display();
     }

     var words = new makeArray ('FAST LOADING ', 'ATTENTION GETTING ', 'EASY TO SET UP ', 'VERY COMPATIBLE ', 'REDIRECTS TO A URL! ');
     var wordIntro = new makeSlideShow (words, 2500, '<CENTER><BR><BR><BR><BR><BR><BR><BR><BR><FONT SIZE = 5>', 'http://www.javascripts.com');
     var blankFrameTop = '<HTML><BODY BGCOLOR = "#000000" TEXT = "#FFFFFF">';
     var blankFrameBottom = '</BODY></HTML>';
     var blankFrame = blankFrameTop + blankFrameBottom;
     var doneLoop = false;
     

</SCRIPT>
         <FRAMESET onLoad = "displayLoop()" ROWS = "100%, *" FRAMEBORDER = NO BORDER = 0>

         <FRAME 
          SCROLLING=AUTO
          SRC = "http://www.javascripts.com/repository/javascript:parent.blankFrame"
          NAME = "draw" 
          MARGINWIDTH = 2 
          MARGINHEIGHT = 2>
         </FRAMESET>     </HEAD>
     </HTML>
<!-- Tommy Raven (Min) says Moo. -->