-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.html
77 lines (73 loc) · 2.03 KB
/
page.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
.container {
display: block;
width: 100%;
/*height: 100%;*/
position: relative;
overflow: hidden;
}
.content {
width: 100%;
/*max-height: 480px;*/
position: relative;
}
.overlay {
position: absolute;
right: 0;
bottom: 0;
}
.overlay > img {
width: 26px;
height:26px;
}
.caption {
position: relative;
bottom: 0;
color: white;
padding: 10px 20px;
overflow: auto;
background: rgba(0,0,0,0.75);
max-height: 80px;
}
.caption-drawer{
position: absolute;
width: 80%;
bottom: -50%;
}
.caption-drawer.visible {
bottom: 0px;
}
img.hidden {
display: none;
}
</style>
</head>
<body>
<div class="constrain-height">
<div class="container" id="endgame-container">
<div id="top-padding"></div>
<div id="endgame-canvas" class="content">
<div class="overlay">
<img class="icons" id="show-caption" src="rsc/endgame/down-chevron.png">
<img class="icons" id="reset" src="rsc/endgame/synchronize.png"/>
<img class="icons" data-toggle="collapse" id="fullscreen" src="rsc/endgame/fullscreen.png">
</div>
</div>
<div class="caption" id="canvas-caption" tabindex="-1">
Click an avenger to get started
</div>
<div id="bottom-padding"></div>
</div>
</div>
<a href="https://icons8.com/icon/7423/synchronize">Synchronize icon by Icons8</a>
</body>
<script src="js/svg.min.js"></script>
<script src="js/svg.path.js"></script>
<script src="js/jquery.js"></script>
<script type="text/javascript" src="js/endgame.js"></script>
</html>