-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
54 lines (54 loc) · 1.27 KB
/
Index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html allow="autoplay">
<head lang="en">
<meta charset="UTF-8">
<title>Redeem Overlay</title>
<script src="API_Key.js"></script>
<script src="settings.js"></script>
<style>
.container
{
position: relative;
width: 100%;
height:100%;
padding-bottom: 5%;
display:block;
}
.video
{
position: absolute;
top: 0;
left: 0;
min-width: 50%;
min-height: 50%;
width: 100%; height: calc(100vh - 20px);
display:block;
}
.hidden
{
display:none !important;
}
.giphybadge
{
position: relative;
top: 0;
left: 0;
max-width:100px;
width:25%;
z-index:1000;
opacity:0.8;
}
</style>
</head>
<body>
<script src="client.js"></script>
<div class="container">
<img id="mybadge" class="giphybadge hidden" src="Poweredby_100px_Badge.gif">
<img id="myimg" class="video hidden">
<video id="mymov" class="video hidden" width="100%" autoplay autoplay="autoplay" loop="" muted="" playsinline="">
Your browser does not support the video tag.
</video>
<iframe id="myyut" class="video hidden" allow="autoplay; fullscreen" frameborder="0" allowFullScreen="true" webkitallowfullscreen="true" mozallowfullscreen="true">
</div>
</body>
</html>