»
EnglishFrenchVietnamese

Print - JavaScript - Random Text2 - JavaScriptBank.com

Full version: jsB@nk » Text » Animation » JavaScript - Random Text2
URL: https://www.javascriptbank.com/javascript-random-text2.html

JavaScript - Random Text2 © JavaScriptBank.comThis JavaScript displays a message under the random characters.

Full version: jsB@nk » Text » Animation » JavaScript - Random Text2
URL: https://www.javascriptbank.com/javascript-random-text2.html



JavaScript
<script language="JavaScript"><!--  var quoteStr;  var quoteNum;  var quoteDis;  var quoteLen;  var quoteLoc;  var quotePic;  var quoteMax;  var numQuote;  var charDelay;  var quoteDelay;  var delayCntr;  // Copyright 2002 by JefferyPSanders.com  // jps@jefferypsanders.com  // Jeffery P Sanders  6/28/02 function funcQuote() {   this[0] = "Visit Jeff Sanders at http://www.jefferypsanders.com!";   this[1] = "A lot of people mistake a short term memory for a clear conscience.";   this[2] = "Friends help you move. REAL friends help you move bodies.";   this[3] = "LOTTERY: A tax on people who are bad at math.";   this[4] = "Save the whales. Collect the whole set.";   this[5] = "A man needs a good memory after he has lied.";   this[6] = "Always remember that your are unique, just like everyone else.";   this[7] = "Pentiums melt in your PC, not in your hand.";   this[8] = "OOPS! My brain just hit a bad sector.";   this[9] = "90% of all statistics are made up.";   this[10] = "Warning: Dates in calendar are closer than they appear.";   this[11] = "Don't take it too seriously, you won't get out alive.";   this[12] = "COINCIDENCE happens.";   this[13] = "A flashlight is a case for holding dead batteries.";   this[14] = "Few women admit their age. Few men act theirs.";   this[15] = "Give me ambiguity or give me something else.";   this[16] = "C program run. C program crash. C programmer quit.";   this[17] = "Did anyone see my lost carrier?";   this[18] = "I used to have a handle on life.  Then it broke.";   this[19] = "Beam me aboard, Scotty.....Sure,... will a 2x4 do?";   this[20] = "Double your drive space - delete windows.";   this[21] = "A little work, a little sleep, a little love and it's all over.";   this[22] = "Artificial intelligence usually beats real stupidity.";   this[23] = "Change is unevitable, except from a vending machine.";   this[24] = "I.R.S.: We've got what it takes to take what you've got.";   this[25] = "I don't suffer from insanity. I enjoy every minute of it.";   this[26] = "Energizer Bunny Arrested!  Charged with battery.";   this[27] = "The gene pool could use a little chlorine.";   this[28] = "We are born naked, wet, and hungry. Then things get worse.";  }  function getQuote() {   delayCntr = delayCntr + 1;   quoteLoc = quoteLoc - 1;   if (delayCntr > quoteDelay) {      delayCntr = 100;      quoteLen = 0;      quoteLoc = 0;      quoteNum = Math.floor(Math.random() * numQuote);      quoteStr = makeQuote[quoteNum];      quoteLen = quoteStr.length;      quoteMax= quoteStr.length;      padQuote();   }  }  function disQuote() {   quoteLoc = quoteLoc + 1;   if (quoteLoc > quoteMax) {    if (delayCntr > 50) {      delayCntr = 0;    }    getQuote();   }   quoteDis = quoteStr.substring(0, quoteLoc);   for (var i = quoteLoc; i < quoteMax; i++){    var charone;    charone = quoteStr.substring(i, i + 1);    var rdnum;    rdnum = Math.floor(Math.random() * 57)    quoteDis = "" + quoteDis + quotePic.substring(rdnum, rdnum + 1);   }  }  function padQuote () {   var spacePad = quoteMax - quoteStr.length;   var frontPad = Math.floor(spacePad / 2);   for (var i = 0; i < frontPad; i++) {    quoteStr = " " + quoteStr;   }   for (var i = quoteStr.length; i < quoteMax; i++) {    quoteStr= "" + quoteStr + " ";   }  }  function loopQuote() {   document.all.txt1.innerHTML="<span>"+quoteDis+"</span>";   disQuote();   setTimeout ("loopQuote();", charDelay);  }  function startQuote() {   quoteStr = "";   quoteNum = 0;   quoteDis = "";   quoteLen = 0;   quoteLoc = 0;   quotePic = "abcdefghjkmnopqrstuvwxyzABCEDEFGHJKLMNOPQRSTUVXYZ234567890";   quoteMax = 70;   numQuote = 29;   delayCntr=100;   charDelay = 50;   quoteDelay = 50;   makeQuote = new funcQuote();   getQuote();   disQuote();   loopQuote();  }//-->    </script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<body onload="startQuote();"><div id="txt1" style="font-family: Courier; font-weight: bold;" align="center">JavaScriptBank.com - Bank of over 2000+ free JavaScripts    </div></body><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->