Erster
<html>
<head>
<title></title>
<script type="text/javascript">
<!--
text = new Array();
text[0] = "Hallo";
text[1] = "Das";
text[2] = "ist ein";
text[3] = "Test";
var secs = 2;
var usedText = -1;
function switchText() {
usedText++;
if(usedText >= text.length) {
usedText = 0;
}
document.getElementById("output".innerHTML = text[usedText];
window.setTimeout("switchText()",secs*1000);
}
//-->
</script>
</head>
<body onLoad="switchText()">
<div id="output"></div>
</body>
</html>
funktionsweise sollte klar sein, oder?
er fängt auch wieder von vorne an...
bei irgendwelchen Fragen, einfach schreiben ;D