changement de couleur + fonts

This commit is contained in:
Jean-Christophe Cura 2016-12-05 23:18:49 +01:00
parent bd69e684a8
commit 5396a938ad
3 changed files with 22 additions and 16 deletions

View File

@ -6,6 +6,8 @@
<link rel="stylesheet" type="text/css" href="newyear.css" /> <link rel="stylesheet" type="text/css" href="newyear.css" />
<link rel="icon" type="image/png" href="terminal.png" /> <link rel="icon" type="image/png" href="terminal.png" />
<link rel="SHORTCUT ICON" 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> </head>
<body id=new_year_body> <body id=new_year_body>

View File

@ -2,6 +2,7 @@ body
{ {
text-align:center; text-align:center;
background:black; background:black;
font-family: 'Raleway', sans-serif;
} }
div.new_year_text_css div.new_year_text_css
@ -33,7 +34,7 @@ div.tsimple_css
{ {
/*border: solid 1px;*/ /*border: solid 1px;*/
font-size:20px; font-size:20px;
color: #FFFFFF; color: #FF0000;
} }
div.unit div.unit
{ {

View File

@ -1,4 +1,4 @@
function gup( name ) function gup( name )
{ {
name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]"); name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
var regexS = "[\\?&]"+name+"=([^&#]*)"; var regexS = "[\\?&]"+name+"=([^&#]*)";
@ -39,7 +39,7 @@ function GetTimeStr()
function ClockInTitle() function ClockInTitle()
{ {
document.title = i18n("Bonne Ann<EFBFBD>e ") + GetTimeStr(); document.title = i18n("Bonne Année ") + GetTimeStr();
//setTimeout("ClockInTitle()",1000); //setTimeout("ClockInTitle()",1000);
} }
ClockInTitle(); ClockInTitle();
@ -64,19 +64,22 @@ var next_year;
var coef=1000; var coef=1000;
var colors; var colors;
/*
"#1D24F2",
"#FFFFFF",
"#E8101F",
*/
function resetcolors() function resetcolors()
{ {
colors = [ colors = [
"#3B0B17", "#1D24F2",
"#610B21", "#1D24F2",
"#8A0829", "#FFFFFF",
"#B40431", "#FFFFFF",
"#DF013A", "#E8101F",
"#FF0040", "#E8101F",
"#FE2E64", "#FFFFFF",
"#FA5882", "#FFFFFF"
"#F7819F",
"#F5A9BC"
]; ];
} }
@ -98,7 +101,7 @@ function CountDown()
if(countdown < 1 ) if(countdown < 1 )
{ {
new_year_count.text("YOUPI !! Bonne Ann<EFBFBD>e !!"); new_year_count.text("YOUPI !! Bonne Année !!");
setTimeout(calcNextYear, 60000); setTimeout(calcNextYear, 60000);
} }
else else
@ -107,7 +110,7 @@ function CountDown()
var count_S = countdown+""; var count_S = countdown+"";
var count_T = count_S.split(""); var count_T = count_S.split("");
$(".t_css").text("0"); $(".t_css").text("");
for(var j=0;j<8;j++) for(var j=0;j<8;j++)
{ {
@ -135,7 +138,7 @@ function CountDown()
{ {
$("#t"+(8-(count_T.length-i))).text(count_T[i]); $("#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; document.title = formatedCounter;
$("#tsimple").text(formatedCounter); $("#tsimple").text(formatedCounter);