So in ungefähr 6h und 10 Minuten ist das neue Jahr angekommen!
Ich wünsche allen Usern des Sponsor-Network einen guten Rutsch ins Jahr 2010!
Edit:
Wer einen Contdown für seine Seite haben will, hier ist ein kleiner JavaScript Code:
Code
- <span id="countdown"> </span>
- <script type='text/javascript'>
- var end = new Date('January 01, 2010 00:00:00');
- function toSt2(n) {
- var s = '';
- if (n < 10) s += '0';
- return (s + n).toString();
- }
- function toSt3(n) {
- var s = '';
- if (n < 10) s += '00';
- else if (n < 100) s += '0';
- return (s + n).toString();
- }
- function countdown() {
- var d = new Date();
- var count = Math.floor(end.getTime() - d.getTime());
- if(count > 0) {
- var miliseconds = toSt3(count%1000); count = Math.floor(count/1000);
- var seconds = toSt2(count%60); count = Math.floor(count/60);
- var minutes = toSt2(count%60); count = Math.floor(count/60);
- var hours = toSt2(count%24); count = Math.floor(count/24);
- document.getElementById('countdown').innerHTML = hours + ':' + minutes + ':' + seconds
- setTimeout('countdown()', 100);
- }
- }
- window.onload = countdown();
- </script>
Vorschau: Therad von NevaKee oder http://vmtek.de/sylvester09/