From 694eb42357c0c4330d2289e04cba505ab765f36b Mon Sep 17 00:00:00 2001 From: Jean-Christophe Cura Date: Fri, 1 Jan 2010 00:41:32 +0100 Subject: [PATCH] [svn r37] --- newyear.css | 18 +++++++++++++++ newyear.html | 15 +++++++++++++ newyear.js | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 95 insertions(+) create mode 100644 newyear.css create mode 100644 newyear.html create mode 100644 newyear.js diff --git a/newyear.css b/newyear.css new file mode 100644 index 0000000..fffa623 --- /dev/null +++ b/newyear.css @@ -0,0 +1,18 @@ +body +{ + background:black; +} + +div.new_year_text_css +{ + text-align:center; + color:red; + font-size:50px; +} + +div.new_year_count_css +{ + text-align:center; + color:red; + font-size:500px; +} diff --git a/newyear.html b/newyear.html new file mode 100644 index 0000000..5682ef6 --- /dev/null +++ b/newyear.html @@ -0,0 +1,15 @@ + + + + Appy New Year + + + + + +
Bonne Année dans
+
+
+ + + \ No newline at end of file diff --git a/newyear.js b/newyear.js new file mode 100644 index 0000000..de661d3 --- /dev/null +++ b/newyear.js @@ -0,0 +1,62 @@ +function i18n(text) +{ + return text; +} +function FormatDigit(digit) +{ + if(digit.length == 0) + { + return "00"; + } + if(digit.length == 1) + { + return "0" + digit; + } + + return digit; +} +function GetTimeStr() +{ + var dt=new Date() + var h = dt.getHours().toString(); + var m = dt.getMinutes().toString(); + var s = dt.getSeconds().toString(); + + return FormatDigit(h) + ":" + FormatDigit(m) + ":" + FormatDigit(s); +} + +function ClockInTitle() +{ + document.title = i18n("Happy New Year: ") + GetTimeStr(); + setTimeout("ClockInTitle()",1000); +} +ClockInTitle(); + +function Pause(time) +{ + var d=new Date(); + while(1) + { + var n = new Date(); + var diff = n-d; + if (diff > time) + break; + } +} + +/*Get controls*/ +var new_year_text = document.getElementById("new_year_text"); +var new_year_count = document.getElementById("new_year_count"); +var next_year_val = new Date().getFullYear() + 1; +var next_year = new Date("01/01/" + next_year_val + " 00:00:00"); +var coef=1000; + +function CountDown() +{ + /*Init years*/ + var now = new Date(); + new_year_count.innerHTML = Math.round((next_year.getTime() - now.getTime()) / coef) + " s"; + setTimeout("CountDown()",100); +} + +CountDown(); \ No newline at end of file