-
Notifications
You must be signed in to change notification settings - Fork 0
/
unnfinn.html
106 lines (92 loc) · 2.5 KB
/
unnfinn.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<style>
img
{
display: block;
margin-left: auto;
margin-right: auto;
margin-top: auto;
margin-bottom: auto;
height: auto;
max-width: 34%;
padding: 30px;
padding-right: 10%;
}
html, body
{
height: 100%;
}
html
{
display: table;
margin: auto;
}
body
{
display: table-cell;
vertical-align: middle;
}
.head
{
text-align: center;
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
color: #343434; font-size: 2vw;
}
.time
{
text-align: center;
font-weight: normal;
font-family: Arial, Helvetica, sans-serif;
color: #343434; font-size: 2vw;
}
</style>
</head>
<body style="background-color:whitesmoke;">
<div class="content">
<img src="images/DIPS_ArenaLogo.png" />
<h3 id="hfinn" class="head">DIPS Arena er i produksjon ved Finnmarkssykehuset HF</h3>
<h3 id="tfinn" class="time"></h3>
<h3 id="hunn" class="head">DIPS Arena er i produksjon ved UNN HF</h3>
<h3 id="tunn" class="time"></h3>
</div>
<script>
var func = function(n1, n2, time, onFinishedName, x)
{
var now = new Date().getTime();
var distance = time - now;
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
var txt = "";
if(days > 0) txt += days + " dager ";
if(hours > 0) txt += hours + " timer ";
if(minutes > 0) txt += minutes + " minutter "
txt += seconds + " sekunder ";
if (distance < 0) {
if(x){
clearInterval(x);
}
document.getElementById(n2).innerHTML = ""
document.getElementById(n1).innerHTML = onFinishedName;
}else{
document.getElementById(n2).innerHTML = txt;
document.getElementById(n1).innerHTML = onFinishedName + " om";
}
};
var setup = function(letter, time){
var fallback = document.getElementById("h"+letter).innerHTML;
var x = setInterval(() => func("h"+letter, "t"+letter, time, fallback, x), 1000);
func("h"+letter, "t"+letter, time, fallback, x);
}
var Finn = new Date("October 10, 2021 13:00:00").getTime();
var Unn = new Date("November 7, 2021 13:00:00").getTime();
setup("finn", Finn);
setup("unn", Unn);
</script>
</body>
</html>