infoscreens/infodisplay/index.html

42 lines
912 B
HTML
Raw Normal View History

2017-11-28 22:21:35 +01:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>c-flo info display</title>
2018-12-09 21:42:17 +01:00
<script src="../lib/infodisplay.js" type="text/javascript"></script>
2017-11-28 22:21:35 +01:00
<style>
2017-11-30 23:31:17 +01:00
::-webkit-scrollbar {
display: none;
}
2017-11-28 22:21:35 +01:00
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>
2020-01-16 21:49:32 +01:00
<iframe allow="autoplay,fullscreen" id="current"></iframe>
<iframe allow="autoplay,fullscreen" id="next"></iframe>
2017-11-28 22:21:35 +01:00
</body>
</html>