SixxKiller
Erfahrenes Mitglied
Hallo allerseits.
Ich hab mal wieder ein kleines Problem wobei ich Hilfe benötige.
Ich möchte zwei JavaScripts in einer HP verwenden. Das funktionierte nicht.
Ich hab die beiden Scripts dann ausgelagert, trotzdem geht es nicht.
Was mach ich da falsch
HP:
countdown.js
textticker.js
Hab hier schon gesucht aber nicht wirklich was gefunden.
Vielleicht kann jemand helfen.
Danke im voraus.
Greetz SixxKiller
Ich hab mal wieder ein kleines Problem wobei ich Hilfe benötige.
Ich möchte zwei JavaScripts in einer HP verwenden. Das funktionierte nicht.
Ich hab die beiden Scripts dann ausgelagert, trotzdem geht es nicht.
Was mach ich da falsch
HP:
Code:
</style>
<script type="text/javascript" src="textticker.js"></script>
<script type="text/javascript" src="countdown.js"></script>
</head>
<center>
<body bgcolor="#FFFFFF" style="background-image: url('images/bg.gif')">
<body onload="textticker()">
<body onload='countdown();'>
<table id="Tabelle_01" width="888" border="0" cellpadding="0" cellspacing="0">
countdown.js
Code:
<!--
// Erstellt mit dem Countdown-Generator - Homepage-Total.de
var end = new Date('August 19, 2007 15:00:00');
function toSt2(n) {
s = '';
if (n < 10) s += '0';
return (s + n).toString();
}
function toSt3(n) {
s = '';
if (n < 10) s += '00';
else if (n < 100) s += '0';
return (s + n).toString();
}
function countdown() {
d = new Date();
count = Math.floor(end.getTime() - d.getTime());
if(count > 0) {
miliseconds = toSt3(count%1000); count = Math.floor(count/1000);
seconds = toSt2(count%60); count = Math.floor(count/60);
minutes = toSt2(count%60); count = Math.floor(count/60);
hours = toSt2(count%24); count = Math.floor(count/24);
days = count;
document.getElementById('c1').innerHTML = days + ' TAGE';
document.getElementById('c2').innerHTML = hours + ':' + minutes + ':' + seconds
setTimeout('countdown()', 50);
}
}
//-->
textticker.js
Code:
<!--
//Dieses Skript stammt von Michael Mailer´s JavaScripts
//URL: http://www.webaid.de/js -- eMail: mm@webaid.de
//Bitte entfernen Sie diesen Vermerk nicht !
var max=0;
function textlist()
{
max=textlist.arguments.length;
for (i=0; i<max; i++)
this[i]=textlist.arguments[i];
}
tl=new textlist
(
" :::: letzte Ergebnisse :::: ",
" Hannover Indians vs. Kassel Huskies 2:5 ( 0:1; 1:2; 1:2 ) ",
" .......... "
);
var x=0; pos=0;
var l=tl[0].length;
function textticker()
{
document.form1.textfeld.value=tl[x].substring(0,pos)+"_";
if(pos++==l)
{
pos=0;
setTimeout("textticker()",5000);
x++;
if(x==max)
x=0;
l=tl[x].length;
} else
setTimeout("textticker()",50);
}
//-->
Vielleicht kann jemand helfen.
Danke im voraus.
Greetz SixxKiller
Zuletzt bearbeitet: