Web Marquee
Your Basic Marquee
Bouncy Marquee
Marquee With Bgcolor
Marquee Directions
Marquee Speed
Marquee WidthEx: width=33% OR width=102
Mouseover Speed Marquee
The onmouseOVER # is when you put your mouse
ON it, the onmouseOUT # is when its normal
Marquee W/ Loop #
Marquee That Stops
Combining It All
Marquee on Toolbar<SCRIPT LANGUAGE="JavaScript">
<!--// Use these to set up the message:var msg
= "TEXT GOES HERE!"var delay = 30var startPos
= 100// Don't touch these variables:var timerID
= nullvar timerRunning = falsevar pos = 0//
Crank it up!StartScrolling()function StartScrolling(){
// Make sure the clock is stopped
StopTheClock() // Put in spaces to get "start" position
for (var i = 0; i < startPos; i++) msg = " " + msg
// Off we go... DoTheScroll()}function StopTheClock(){
if(timerRunning) clearTimeout(timerID)
timerRunning = false}function DoTheScroll(){
if (pos < msg.length) self.status =
msg.substring(pos, msg.length); else
pos=-1; ++pos timerRunning = true timerID =
self.setTimeout("DoTheScroll()", delay)}file://--></SCRIPT>