kostenlose-templates.eu - Titelscroller . . .   [IE|M|O]
Ein Scroller für die Titelzeile eines Browserfensters.

<script type="text/javascript">
<!-- Begin
var message = new Array();
// Set your messages below -- follow the pattern.
// To add more messages, just add more elements to the array.
message[0] = " | ° ° JavaScript ° ° ";
message[1] = " | ° ° CSS ° ° ";
message[2] = " | ° ° HTML ° ° ";
message[3] = " | ° ° Applets ° ° ";
message[4] = " | ° ° DHTML ° ° ";
message[5] = " | ° ° Tutorials ° ° ";
message[6] = " | ° ° Grafiken ° ° ";
message[7] = " | ° ° Forum ° ° ";
var reps = 1;
var speed = 200;  // Set the overall speed (larger number = slower action).

// DO NOT EDIT BELOW THIS LINE.
var p = message.length;
var T = "";
var C = 0;
var mC = 0;
var s = 0;
var sT = null;
if (reps < 1) reps = 1;
function doTheThing() {
T = message[mC];
A();
}
function A() {
s++;
if (s > 23) { s = 1;}
// you can fiddle with the patterns here...
if (s == 1) { document.title = ' '+T; }
if (s == 2) { document.title = ' J'+T; }
if (s == 3) { document.title = ' JA'+T; }
if (s == 4) { document.title = ' JAV'+T; }
if (s == 5) { document.title = ' JAVA'+T; }
if (s == 6) { document.title = ' JAVAT'+T; }
if (s == 7) { document.title = ' JAVATO'+T; }
if (s == 8) { document.title = ' JAVATOP'+T; }
if (s == 9) { document.title = ' JAVATOP.'+T; }
if (s == 10) { document.title = ' JAVATOP.D'+T; }
if (s == 11) { document.title = ' JAVATOP.DE'+T; }
if (s == 12) { document.title = ' JAVATOP.DE '+T; }
if (s == 13) { document.title = ' JAVATOP.DE'+T;}
if (s == 14) { document.title = ' JAVATOP.D'+T; }
if (s == 15) { document.title = ' JAVATOP.'+T; }
if (s == 16) { document.title = ' JAVATOP'+T; }
if (s == 17) { document.title = ' JAVATO'+T; }
if (s == 18) { document.title = ' JAVAT'+T; }
if (s == 19) { document.title = ' JAVA'+T; }
if (s == 20) { document.title = ' JAV'+T; }
if (s == 21) { document.title = ' JA'+T; }
if (s == 22) { document.title = ' J'+T; }
if (s == 23) { document.title = ' '+T; }
if (C < (23 * reps)) {
sT = setTimeout("A()", speed);
C++;
}
else {
C = 0;
s = 0;
mC++;
if(mC > p - 1) mC = 0;
sT = null;
doTheThing();
   }
}
doTheThing();
//  End -->
</script>