Kann mir keiner helfen?
Beiträge von Chriss81m
-
-
Hallo, und danke für deine schnelle Antwort.
leider ist das nicht soo die richtige Lösung für mich.
ich habe im Moment einen Countdown, wo ich einen Ablauftag und Monat Jahr und Uhrzeit eingeben kann.
Ich möchte, dass wenn dieser am Tag X zur Zeit Y nach 2 sekunden aus z.B. google.de umschaltet.Damit du dir vielleicht ein besseres Bild machen kannst hier mal der Quelltext:
HTML
Alles anzeigen<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <script> <!-- Countdown Script by Virtual_Max --> <!-- http://come.to.vmax --> <!-- please keep this comment unchanged if you use it --> <!-- hide script //change your event date event here. var eventdate = new Date("May 29, 2010 08:30:00 GMT"); function toSt(n) {s="" if(n<10) s+="0" return s+n.toString(); } function countdown() {cl=document.clock; d=new Date(); count=Math.floor((eventdate.getTime()-d.getTime())/1000); if(count<=0) {cl.days.value ="----"; cl.hours.value="--"; cl.mins.value="--"; cl.secs.value="--"; return; } cl.secs.value=toSt(count%60); count=Math.floor(count/60); cl.mins.value=toSt(count%60); count=Math.floor(count/60); cl.hours.value=toSt(count%24); count=Math.floor(count/24); cl.days.value=count; setTimeout("countdown()",500); } // end script --> </script> </head> <body onload="countdown()" style="color: rgb(255, 255, 128); background-color: rgb(149, 74, 0);" alink="#ff0000" link="#80ff00" vlink="#ff00ff" onselectstart="return false" ondragstart="return false" oncontextmenu="return false" oncontext="return false"> <center> <p></p> <table style="text-align: left; width: 100%; height: 30%;" border="0" cellpadding="2" cellspacing="2"> <tbody> <tr> <td></td> </tr> </tbody> </table> <p></p> <form name="clock"> <p></p> <center> <table style="background-color: rgb(0, 0, 0);" border="5" cellpadding="0" cellspacing="5"> <tbody> <tr> <td style="width: 31%; text-align: center; background-color: rgb(0, 0, 0); color: rgb(149, 74, 0);"><b>Days:</b></td> <td style="width: 23%; text-align: center; background-color: rgb(0, 0, 0); color: rgb(149, 74, 0);"><b>Hours:</b></td> <td style="width: 23%; text-align: center; background-color: rgb(0, 0, 0); color: rgb(149, 74, 0);"><b>Mins:</b></td> <td style="width: 23%; text-align: center; background-color: rgb(0, 0, 0); color: rgb(149, 74, 0);"><b>Secs:</b></td> </tr> <tr> <td align="center"><input name="days" size="4"></td> <td align="center"><input name="hours" size="2"></td> <td align="center"><input name="mins" size="2"></td> <td align="center"><input name="secs" size="2"></td> </tr> <tr style="color: rgb(149, 74, 0);"> <td colspan="4" bgcolor="#000080"> <center style="background-color: rgb(0, 0, 0);"><big style="font-weight: bold;">Chaos- Cacher- Crew</big></center> </td> </tr> <tr> <td style="text-align: center;" colspan="4" bgcolor="#000000"> <big style="font-weight: bold;"><span style="color: rgb(149, 74, 0);">Countdown</span></big></td> </tr> </tbody> </table> </center> <p></p> </form> </center> </body> </html>
Danke im Vorfeld
-
Hallo Leute,
-> https://www.forum-hilfe.de/showthread.php?t=9347
bekommt man es auch hin, dass die Seite automatisch zu einem fest definirtem ziel wechselt, sobald der Countdown runter gezählt hat?
das heißt, wenn abgelaufen, dann wechsle zu seite http://www.google.de
als Beispiel.