Text ve spodní liště
Příklad neuvádím.
KOD:
<SCRIPT LANGUAGE="JavaScript"> <!-- // CHANGE THESE TO ALTER THE SCROLL SPEED ScrollSpeed = 150; // milliseconds between scrolls ScrollChars = 1; // chars scrolled per time period function SetupTicker() { // add space to the left of the message msg = " . . . "; // PUT YOUR MESSAGE HERE, USE += TO ADD THEM TOGETHER msg += " VÁŠ TEXT "; RunTicker(); } function RunTicker() { window.setTimeout('RunTicker()',ScrollSpeed); window.status = msg; msg = msg.substring(ScrollChars) + msg.substring(0,ScrollChars); } // Start the ticker code SetupTicker(); <!-- end --> </SCRIPT>
// this starts the ticker