-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathosd_template.html
90 lines (84 loc) · 2.24 KB
/
osd_template.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
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>${TITLE}</title>
<script src="resources/openseadragon.min.js"></script>
<style>
html, body, .page {
height: 100%; /* needed for proper layout */
}
body {
background: #000000;
color: #ffffff;
overflow: hidden;
padding: 0;
margin: 0;
}
p {
margin-bottom: 1em;
}
.page {
display: flex;
flex-direction: column;
}
.page-header {
flex: 0 0 auto;
background-color: #cccccc;
color: #000000;
padding: 0.5em 1em 0.5em 1em;
}
.page-content {
flex: 1 1 auto;
position: relative;/* need this to position inner content */
overflow-y: auto;
}
.page-footer {
flex: 0 0 auto;
background-color: #dcdcdc;
color: #000000;
}
#pageinfo {
position: absolute;
top: 5%;
left: 5%;
width: 90%;
height: 10%;
}
.page-header ul {
padding: 0;
margin: 0;
}
.page-header li {
display: inline;
list-style-type: none;
padding-right: 20px;
}
.page-header h1 {
margin-top: 0;
font-size: 1em;
}
</style>
</head>
<body>
<div class="page">
<div class="page-header">
<h1>${DESIGNATION}: ${WIDTH}x${HEIGHT} pixels = ${MEGA_PIXELS} megapixels</h1>
</div>
<div id="zoom-display" class="page-content openseadragon"></div>
<script type="text/javascript">
var myDragon = OpenSeadragon({
id: "zoom-display",
maxZoomPixelRatio: ${MAX_ZOOM_PIXEL_RATIO},
zoomPerScroll: 2.0,
showNavigator: false,
wrapHorizontal: false,
prefixUrl: "resources/images/",
${TILE_SOURCES}
});
</script>
</div><!-- page -->
</body>
</html>