Local infodisplay runner

This commit is contained in:
Henri Bergius 2017-11-28 22:21:35 +01:00
parent 86d1dedcba
commit 03aed11262
5 changed files with 157 additions and 3 deletions

38
infodisplay/index.html Normal file
View file

@ -0,0 +1,38 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>c-flo info display</title>
<script src="/dist/infodisplay.js" type="text/javascript"></script>
<script src="infodisplay.js" type="text/javascript"></script>
<style>
body {
margin: 0px;
padding: 0px;
background-color: #000000;
overflow: hidden;
}
iframe {
position: absolute;
top: 0px;
left: 0px;
width: 100vw;
height: 100vh;
margin: 0px;
padding: 0px;
border: 0px;
background-color: #000000;
transition: opacity 0.3s ease-in-out;
overflow: hidden;
opacity: 1;
}
iframe#next {
opacity: 0;
}
</style>
</head>
<body>
<iframe id="current"></iframe>
<iframe id="next"></iframe>
</body>
</html>