diff --git a/index.html b/index.html index 15d7ee7..8801e3e 100644 --- a/index.html +++ b/index.html @@ -6,6 +6,8 @@ + +
diff --git a/newyear.css b/newyear.css index bc6eb53..5d9e903 100644 --- a/newyear.css +++ b/newyear.css @@ -2,6 +2,7 @@ body { text-align:center; background:black; + font-family: 'Raleway', sans-serif; } div.new_year_text_css @@ -33,7 +34,7 @@ div.tsimple_css { /*border: solid 1px;*/ font-size:20px; - color: #FFFFFF; + color: #FF0000; } div.unit { diff --git a/newyear.js b/newyear.js index 9590196..449db15 100644 --- a/newyear.js +++ b/newyear.js @@ -1,4 +1,4 @@ -function gup( name ) +function gup( name ) { name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]"); var regexS = "[\\?&]"+name+"=([^]*)"; @@ -39,7 +39,7 @@ function GetTimeStr() function ClockInTitle() { - document.title = i18n("Bonne Année ") + GetTimeStr(); + document.title = i18n("Bonne Année ") + GetTimeStr(); //setTimeout("ClockInTitle()",1000); } ClockInTitle(); @@ -64,19 +64,22 @@ var next_year; var coef=1000; var colors; +/* + "#1D24F2", + "#FFFFFF", + "#E8101F", +*/ function resetcolors() { colors = [ - "#3B0B17", - "#610B21", - "#8A0829", - "#B40431", - "#DF013A", - "#FF0040", - "#FE2E64", - "#FA5882", - "#F7819F", - "#F5A9BC" + "#1D24F2", + "#1D24F2", + "#FFFFFF", + "#FFFFFF", + "#E8101F", + "#E8101F", + "#FFFFFF", + "#FFFFFF" ]; } @@ -98,7 +101,7 @@ function CountDown() if(countdown < 1 ) { - new_year_count.text("YOUPI !! Bonne Année !!"); + new_year_count.text("YOUPI !! Bonne Année !!"); setTimeout(calcNextYear, 60000); } else @@ -107,7 +110,7 @@ function CountDown() var count_S = countdown+""; var count_T = count_S.split(""); - $(".t_css").text("0"); + $(".t_css").text(""); for(var j=0;j<8;j++) { @@ -135,7 +138,7 @@ function CountDown() { $("#t"+(8-(count_T.length-i))).text(count_T[i]); } - var formatedCounter = "Nouvel an dans: " + FormatDigit(""+(parseInt(countdown/60/60/24))+" jours "+(parseInt(countdown/60/60))%24) + " heures " +FormatDigit(""+(parseInt(countdown/60))%60)+ " minutes " + FormatDigit(""+countdown%60) + " secondes"; + var formatedCounter = FormatDigit(""+(parseInt(countdown/60/60/24))+" jours "+(parseInt(countdown/60/60))%24) + " heures " +FormatDigit(""+(parseInt(countdown/60))%60)+ " minutes " + FormatDigit(""+countdown%60) + " secondes " + now.getMilliseconds() + " millisecondes"; document.title = formatedCounter; $("#tsimple").text(formatedCounter);