STATUS BAR SCROLLING MESSAGEThis is a little JavaScript that puts a scrolling message in the status bar of your web-browser
And here's the code: <!-- TWO STEPS TO INSTALL WRITE AND SLIDE: 1. Paste the coding into the HEAD of your HTML document 2. Copy the onLoad event handler into the BODY tag --> <!-- STEP ONE: Copy this code into the HEAD of your HTML document --> <head> <SCRIPT LANGUAGE="JavaScript"> <!-- Begin var Message="Yet another simple scroll from JavaScript's and More! You could have done it!!"; var place=1; function scrollIn() { window.status=Message.substring(0, place); if (place >= Message.length) { place=1; window.setTimeout("scrollOut()",300); } else { place++; window.setTimeout("scrollIn()",50); } } function scrollOut() { window.status=Message.substring(place, Message.length); if (place >= Message.length) { place=1; window.setTimeout("scrollIn()", 100); } else { place++; window.setTimeout("scrollOut()", 50); } } // End --> </SCRIPT> <title>Custom Scroller</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></head> <!-- STEP TWO: Add this onLoad event handler into the BODY tag --> <BODY onLoad="scrollIn()" bgcolor="#FFFFFF"><p><center><font face="arial, helvetica" size="-2">Free JavaScripts provided<br>by <a>Website Scripts and More</a></font></center><h2><font face="Verdana, Arial, Helvetica, sans-serif" color="#FF0000">LOOK DOWN AT THE BOTTOM OF THE SCREEN!</font></h2></body></html> ![]()
Category-BrowserTags-Status Bar Scrolling Message
status bar code scrolling status bar status bar html code status bar message |
|