Updated receiver to work more properly with the current player, and added a picture

This commit is contained in:
Kasper Rynning-Tønnesen
2016-11-18 15:07:58 +01:00
parent 8854f1d687
commit 071744440d
11 changed files with 279 additions and 92 deletions

View File

@@ -5,17 +5,43 @@
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="receiver.js"></script>
<style>
body{
background: black;
}
#player{
width: 100vw;
height: 100vh;
margin-left: -8px;
margin-top: -8px;
}
.center{
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 0;
right: 0;
margin: auto;
text-align: center;
}
.lower_left{
position: absolute;
bottom: 0px;
width: 15%;
left: 0;
right: 0;
text-align: left;
}
.hide{
display: none;
}
</style>
</head>
<body>
<div id="wrapper">
<div id="player"></div>
<img id="zoff-logo" class="center" src="squareicon_small.png" alt="logo">
<div id="player" class="hide"></div>
</div>
</body>
</html>