Compare commits

...

10 Commits

6 changed files with 168 additions and 24 deletions

39
index.html Normal file
View File

@ -0,0 +1,39 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<title>Appy New Year</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="newyear.css" />
<link rel="icon" type="image/png" href="terminal.png" />
<link rel="SHORTCUT ICON" href="terminal.png"/>
<link href='https://fonts.googleapis.com/css?family=Merriweather+Sans' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
</head>
<body id=new_year_body>
<div id=new_year_text class=new_year_text_css><span>Bonne Ann&eacute;e dans</span></div>
<div id=new_year_count class=new_year_count_css>
<table class="center">
<tr>
<td >
<div id=t0 class=t_css>a</div>
<div id=t1 class=t_css>b</div>
<div id=t2 class=t_css>c</div>
<div id=t3 class=t_css>d</div>
<div id=t4 class=t_css>e</div>
<div id=t5 class=t_css>f</div>
<div id=t6 class=t_css>g</div>
<div id=t7 class=t_css>h</div>
</td>
<tr>
<tr>
<td >
<div id=tsimple class=tsimple_css>pour les nulls: </div>
</td>
<tr>
</table>
</div>
<script type="text/javascript" src="jquery-1.7.1.min.js" ></script>
<script type="text/javascript" src="newyear.js" ></script>
</body>
</html>

4
jquery-1.7.1.min.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,8 @@
body
{
text-align:center;
background:black;
font-family: 'Raleway', sans-serif;
}
div.new_year_text_css
@ -10,9 +12,34 @@ div.new_year_text_css
font-size:50px;
}
table.center {
margin-left:auto;
margin-right:auto;
}
div.new_year_count_css
{
text-align:center;
color:red;
font-size:500px;
width:100%;
display:block;
}
div.t_css
{
/*border: solid 1px;*/
float: left;
font-size:200px;
}
div.tsimple_css
{
/*border: solid 1px;*/
font-size:20px;
color: #FF0000;
}
div.unit
{
/*border: solid 1px;*/
float: left;
color: green;
font-size:120px;
}

View File

@ -1,15 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<title>Appy New Year</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="newyear.css" />
</head>
<body id=new_year_body>
<div id=new_year_text class=new_year_text_css><span>Bonne Ann&eacute;e dans</span></div>
<div id=new_year_count class=new_year_count_css>
</div>
<script type="text/javascript" src="newyear.js" ></script>
</body>
</html>

View File

@ -1,3 +1,16 @@

function gup( name )
{
name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
var regexS = "[\\?&]"+name+"=([^&#]*)";
var regex = new RegExp( regexS );
var results = regex.exec( window.location.href );
if( results == null )
return "";
else
return results[1];
}
function i18n(text)
{
return text;
@ -27,8 +40,8 @@ function GetTimeStr()
function ClockInTitle()
{
document.title = i18n("Happy New Year: ") + GetTimeStr();
setTimeout("ClockInTitle()",1000);
document.title = i18n("Bonne Année ") + GetTimeStr();
//setTimeout("ClockInTitle()",1000);
}
ClockInTitle();
@ -45,18 +58,94 @@ function Pause(time)
}
/*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 new_year_text = $("#new_year_text");
var new_year_count = $("#new_year_count");
var next_year_val;
var next_year;
var coef=1000;
var colors;
/*
"#1D24F2",
"#FFFFFF",
"#E8101F",
*/
function resetcolors()
{
colors = [
"#1D24F2",
"#1D24F2",
"#FFFFFF",
"#FFFFFF",
"#E8101F",
"#E8101F",
"#FFFFFF",
"#FFFFFF"
];
}
resetcolors();
function calcNextYear()
{
next_year_val = new Date().getFullYear() + 1;
next_year = new Date("01/01/" + next_year_val + " 00:00:00");
}
var loop = 0;
var phase = 1;
function CountDown()
{
/*Init years*/
var now = new Date();
new_year_count.innerHTML = Math.round((next_year.getTime() - now.getTime()) / coef) + " s";
setTimeout("CountDown()",100);
var countdown = Math.round((next_year.getTime() - now.getTime()) / coef);
/*remove divs*/
if(countdown < 1 )
{
new_year_count.text("YOUPI !! Bonne Année !!");
setTimeout(calcNextYear, 60000);
}
else
{
var displayunit = (gup("unit") == "1") || (gup("unit") == "");
var count_S = countdown+"";
var count_T = count_S.split("");
$(".t_css").text("");
for(var j=0;j<8;j++)
{
$("#t"+j).css("color", colors[j]);
}
new_year_text.css("color", colors[0]);
if(loop < 7 && phase > 0)
{
loop++;
colors.unshift(colors.pop());
}
else
{
phase = 1;
resetcolors();
loop = 0;
//loop--;
//colors.push(colors.shift());
}
if(phase < 0 && loop < 0)
{
phase = 1;
}
for(var i=count_T.length;i>=0;i--)
{
$("#t"+(8-(count_T.length-i))).text(count_T[i]);
}
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);
}
setTimeout("CountDown()",1000/8);
}
calcNextYear();
CountDown();

BIN
terminal.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 507 B