-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SiV countdown: added url and dhub page
- Loading branch information
1 parent
1e681a8
commit f572449
Showing
2 changed files
with
133 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
<head> | ||
<meta charset="utf-8" /> | ||
<link href='https://fonts.googleapis.com/css?family=Open Sans' rel='stylesheet'> | ||
<style> | ||
img | ||
{ | ||
display: inline-block; | ||
} | ||
|
||
.image-container { | ||
text-align: center; | ||
} | ||
|
||
.super-lege { | ||
width: 10.2%; | ||
} | ||
|
||
.super-pleier { | ||
padding-left: 3%; | ||
padding-right: 5%; | ||
width: 11%; | ||
} | ||
|
||
.dips-logo { | ||
width: 45%; | ||
margin-right: 5%; | ||
} | ||
|
||
|
||
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: 'Open Sans'; | ||
color: #343434; font-size: 4vw; | ||
} | ||
|
||
.time | ||
{ | ||
text-align: center; | ||
font-weight: normal; | ||
font-family: 'Open Sans'; | ||
color: #343434; font-size: 4vw; | ||
} | ||
|
||
</style> | ||
</head> | ||
<body style="background-color:#F8F8F8;"> | ||
<div class="content"> | ||
<div class="image-container"> | ||
<img class="dips-logo" src="images/DIPS_ArenaLogo.png" alt="Arena logo" /> | ||
</div> | ||
<h3 id="hhsiv" class="head">Sykehuset i Vestfold (SiV) tar i bruk DIPS Arena</h3> | ||
<h3 id="thsiv" 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, 1000, "h"+letter, "t"+letter, time, fallback, x); | ||
func("h"+letter, "t"+letter, time, fallback, x); | ||
} | ||
|
||
var Hsiv= new Date("May 26, 2024 12:00:00").getTime(); | ||
|
||
setup("hsiv", Hsiv); | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters