geselecteerd als gefixeerd bericht
<!– Begintext = "♥WELKOM♥ BIJ♣ VIVAFOREVER♣"; // The text to scrollcolor1 = "#CC6699"; // original text colorcolor2 = "#ffffff"; // new character colorfontsize = "6"; // font size of textspeed =" 98 "; // how fast to rotate to next character// time is in milliseconds, (i.e. 1000 = 1 second) i = 0;if (navigator.appName == "Netscape") {document.write("
“);}else {document.write(“
“);}function changeCharColor() {if (navigator.appName == “Netscape”) {document.a.document.write(““);for (var j = 0; j < text.length; j++) {if(j == i) {document.a.document.write("” + text.charAt(i) + ““);}else {document.a.document.write(text.charAt(j));}}document.a.document.write(‘‘);document.a.document.close();}if (navigator.appName == “Microsoft Internet Explorer”) {str = ““;for (var j = 0; j < text.length; j++) {if( j == i) {str += "” + text.charAt(i) + ““;}else {str += text.charAt(j);}}str += ““;a.innerHTML = str;}(i == text.length) ? i=0 : i++; // reset after going through all letters}setInterval(“changeCharColor()”, speed);// End –>
a:link {color: #cc6699}a:visited {color: #cc6699}a:hover {color: #00F5FF}a:active {color: #00F5FF}
var scrollCounter = 0; var scrollText = “~~..::Welkom bij Vivaforever ::..~~”; var scrollDelay = 70; //70 is de snelheid, hoe hoger, hoe langzamer var i = 0; while (i ++ < 50) //De 50 is de afstand, vanaf links waar hij begint scrollText = " " + scrollText; function Scroller() { window.status = scrollText.substring(scrollCounter++, scrollText.length); if (scrollCounter == scrollText.length) scrollCounter = 0; setTimeout("Scroller()", scrollDelay); } Scroller();


