infoscreens/infodisplay/index.html
2017-11-30 23:31:17 +01:00

41 lines
855 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>c-flo info display</title>
<script src="/dist/infodisplay.js" type="text/javascript"></script>
<style>
::-webkit-scrollbar {
display: none;
}
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>