Hallo,
ich habe eine Frage zu diesem JavaScript:
Ich möchte, dass der Newsticker 2mal durchläuft und dann seinen Dienst einstellt!!!
Kann mir jemand helfen?
VIELEN DANK IM VORRAUS!!!
Ciao,
Scott
ich habe eine Frage zu diesem JavaScript:
PHP-Code:
<script language="JavaScript">
<!--
var max=0;
function textlist()
{
max=textlist.arguments.length;
for (i=0; i<max; i++)
this[i]=textlist.arguments[i];
}
tl=new textlist
(
"Hier steht der Text.",
""
);
var x=0; pos=0;
var l=tl[0].length;
function textticker()
{
var text = tl[x].substring(0,pos)+"_";
document.getElementById("tickerline").innerText = text;
if(pos++==l) {
pos=0;
setTimeout("textticker()",2000);
x=0;
if(x==max) x=0;
l=tl[x].length;
}
else {
setTimeout("textticker()",50);
}
}
// -->
</script>
Kann mir jemand helfen?
VIELEN DANK IM VORRAUS!!!
Ciao,
Scott
Kommentar